22 lines
426 B
C++
22 lines
426 B
C++
#include "historydialog.h"
|
|
#include "ui_historydialog.h"
|
|
|
|
HistoryDialog::HistoryDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::HistoryDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowModality(Qt::ApplicationModal);
|
|
setWindowFlags(Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint);
|
|
}
|
|
|
|
HistoryDialog::~HistoryDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void HistoryDialog::refreshLanguage()
|
|
{
|
|
ui->retranslateUi(this);
|
|
}
|