00001 #include "AboutForm.h" 00002 00003 AboutForm::AboutForm(QWidget *parent) : QDialog(parent) 00004 { 00005 ui.setupUi(this); 00006 00007 setupVersion(); 00008 createConnections(); 00009 } 00010 00011 AboutForm::~AboutForm() 00012 { 00013 //dtor 00014 } 00015 00016 void AboutForm::setupVersion() 00017 { 00018 QString tmpStr; 00019 00020 ui.lblVersion->setText("Version: " + tmpStr.setNum(version)); 00021 } 00022 00023 void AboutForm::createConnections() 00024 { 00025 00026 }