2024-02-06 06:19:53 +00:00
|
|
|
#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;
|
|
|
|
}
|
2024-03-08 08:33:05 +00:00
|
|
|
|
|
|
|
void HistoryDialog::refreshLanguage()
|
|
|
|
{
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|