11 #include "aboutform.hpp"
12 #include "ui_aboutform.h"
14 using namespace Huggle;
16 AboutForm::AboutForm(QWidget *parent) : QDialog(parent), ui(new Ui::
AboutForm)
19 QString python =
" without python support";
20 if (Configuration::PythonEngine)
22 python =
" with python support";
24 QString version =
" Compiled using QT " + QString(QT_VERSION_STR) +
" Running on QT " + QString(qVersion());
25 ui->label_7->setText(
"Version: " + Configuration::HuggleVersion + python + version);
28 AboutForm::~AboutForm()
33 void AboutForm::on_pushButton_clicked()