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:
João Mesquita
2010-01-07 23:00:34 +00:00
parent 97e71e9d08
commit 4c6942b437
10 changed files with 441 additions and 8 deletions

View 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;
}
}