Some tweaks of code.

This commit is contained in:
Martin Rotter 2015-10-18 11:19:42 +02:00
parent b1f4c9f539
commit 88bbe648a0

View File

@ -38,21 +38,19 @@
FormUpdate::FormUpdate(QWidget *parent)
: QDialog(parent), m_downloader(NULL), m_readyToInstall(false), m_ui(new Ui::FormUpdate) {
m_ui->setupUi(this);
// Set flags and attributes.
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog | Qt::WindowSystemMenuHint | Qt::WindowTitleHint);
setWindowIcon(qApp->icons()->fromTheme(QSL("application-about")));
m_btnUpdate = m_ui->m_buttonBox->addButton(tr("Update"), QDialogButtonBox::ActionRole);
m_btnUpdate->setToolTip(tr("Download new installation files."));
connect(m_btnUpdate, SIGNAL(clicked()), this, SLOT(startUpdate()));
m_ui->m_lblCurrentRelease->setText(APP_VERSION);
#if defined(Q_OS_OS2)
MessageBox::iconify(m_ui->m_buttonBox);
#endif
m_ui->m_lblCurrentRelease->setText(APP_VERSION);
// Set flags and attributes.
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog | Qt::WindowSystemMenuHint | Qt::WindowTitleHint);
setWindowIcon(qApp->icons()->fromTheme(QSL("application-about")));
connect(m_btnUpdate, SIGNAL(clicked()), this, SLOT(startUpdate()));
checkForUpdates();
}