Subversion Repositories svn1

Rev

Rev 99 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
95 david 1
#include "qmconfclass.h"
2
#include "ui_qmconfclass.h"
3
 
4
qmconfClass::qmconfClass(QWidget *parent) :
5
    QWidget(parent),
6
    ui(new Ui::qmconfClass)
7
{
8
    ui->setupUi(this);
9
}
10
 
11
qmconfClass::~qmconfClass()
12
{
13
    delete ui;
14
}
15
 
16
void qmconfClass::changeEvent(QEvent *e)
17
{
18
    QWidget::changeEvent(e);
19
    switch (e->type()) {
20
    case QEvent::LanguageChange:
21
        ui->retranslateUi(this);
22
        break;
23
    default:
24
        break;
25
    }
26
}