Generates XML files for DeltaPro from Amazon invoices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
659 B

#include "about.h"
#include "ui_about.h"
About::About(QWidget *parent) :
QDialog(parent),
ui(new Ui::About)
{
ui->setupUi(this);
this->setWindowTitle("About DP XML Generator " + APP_VERSION);
this->setGeometry(QStyle::alignedRect(
Qt::LeftToRight,
Qt::AlignCenter,
this->size(),
qApp->desktop()->availableGeometry()
));
ui->label_version->setText(QString("Version: ") + APP_VERSION);
ui->label_releasedate->setText(QString("Released on: ") + APP_RELEASE_DATE);
}
About::~About()
{
delete ui;
}