mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
Start doing the accounts configurations. It does not work yet, only dialogs are designed.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16203 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
26
fscomm/preferences/accountdialog.cpp
Normal file
26
fscomm/preferences/accountdialog.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include "accountdialog.h"
|
||||
#include "ui_accountdialog.h"
|
||||
|
||||
AccountDialog::AccountDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::AccountDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
AccountDialog::~AccountDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void AccountDialog::changeEvent(QEvent *e)
|
||||
{
|
||||
QDialog::changeEvent(e);
|
||||
switch (e->type()) {
|
||||
case QEvent::LanguageChange:
|
||||
ui->retranslateUi(this);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user