qt/LedOK/LoUIClass/aboutdlg.cpp

19 lines
340 B
C++
Raw Normal View History

2022-01-04 18:11:48 +08:00
#include "aboutdlg.h"
#include "ui_aboutdlg.h"
#include "globaldefine.h"
AboutDlg::AboutDlg(QWidget *parent) :
LoQDialog(parent),
ui(new Ui::AboutDlg)
{
ui->setupUi(this);
ui->label_2->setText(APP_VERSION);
#ifdef MACRO_YUANHENG_VERSION
ui->label_3->setVisible(false);
#endif
}
AboutDlg::~AboutDlg()
{
delete ui;
}