mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-17 17:05:37 +00:00
17 lines
380 B
C++
17 lines
380 B
C++
#include "CAboutDialog.h"
|
|
#include "ui_CAboutDialog.h"
|
|
#include "UICommon.h"
|
|
|
|
CAboutDialog::CAboutDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(std::make_unique<Ui::CAboutDialog>())
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
QString LabelText = ui->AboutLabel->text();
|
|
REPLACE_APPVARS(LabelText);
|
|
ui->AboutLabel->setText(LabelText);
|
|
}
|
|
|
|
CAboutDialog::~CAboutDialog() = default;
|