From 88bbe648a0de89a3db669f66eb536f6b4012bb87 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Sun, 18 Oct 2015 11:19:42 +0200 Subject: [PATCH] Some tweaks of code. --- src/gui/dialogs/formupdate.cpp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/gui/dialogs/formupdate.cpp b/src/gui/dialogs/formupdate.cpp index 7c59f1ac8..fe385bf83 100755 --- a/src/gui/dialogs/formupdate.cpp +++ b/src/gui/dialogs/formupdate.cpp @@ -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(); }