Rev 99 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include "qmconfclass.h"#include "ui_qmconfclass.h"qmconfClass::qmconfClass(QWidget *parent) :QWidget(parent),ui(new Ui::qmconfClass){ui->setupUi(this);}qmconfClass::~qmconfClass(){delete ui;}void qmconfClass::changeEvent(QEvent *e){QWidget::changeEvent(e);switch (e->type()) {case QEvent::LanguageChange:ui->retranslateUi(this);break;default:break;}}