mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
22 lines
497 B
C++
22 lines
497 B
C++
|
#include "AboutDialog.h"
|
||
|
#include "ui_AboutDialog.h"
|
||
|
#include <QDebug>
|
||
|
#include "version.h"
|
||
|
#include "BuildDateTimeQt.h"
|
||
|
|
||
|
AboutDialog::AboutDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::AboutDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
ui->i2pdVersionLabel->setText(I2PD_VERSION);
|
||
|
ui->i2pVersionLabel->setText(I2P_VERSION);
|
||
|
ui->buildDateTimeLabel->setText(BUILD_DATE_TIME_QT);
|
||
|
ui->vcsCommitInfoLabel->setText(VCS_COMMIT_INFO);
|
||
|
}
|
||
|
|
||
|
AboutDialog::~AboutDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|