mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-30 05:56:12 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16205 d0543943-73ff-0310-b7d9-9358b9ac24b2
32 lines
493 B
C++
32 lines
493 B
C++
#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::writeConfig()
|
|
{
|
|
|
|
}
|
|
|
|
void AccountDialog::changeEvent(QEvent *e)
|
|
{
|
|
QDialog::changeEvent(e);
|
|
switch (e->type()) {
|
|
case QEvent::LanguageChange:
|
|
ui->retranslateUi(this);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|