mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-17 03:53:46 +00:00
20 lines
372 B
C++
20 lines
372 B
C++
#include "CAboutDialog.h"
|
|
#include "ui_CAboutDialog.h"
|
|
#include "UICommon.h"
|
|
|
|
CAboutDialog::CAboutDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::CAboutDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
QString LabelText = ui->AboutLabel->text();
|
|
REPLACE_APPVARS(LabelText);
|
|
ui->AboutLabel->setText(LabelText);
|
|
}
|
|
|
|
CAboutDialog::~CAboutDialog()
|
|
{
|
|
delete ui;
|
|
}
|