Some tweaks of code.
This commit is contained in:
parent
b1f4c9f539
commit
88bbe648a0
@ -38,21 +38,19 @@
|
|||||||
FormUpdate::FormUpdate(QWidget *parent)
|
FormUpdate::FormUpdate(QWidget *parent)
|
||||||
: QDialog(parent), m_downloader(NULL), m_readyToInstall(false), m_ui(new Ui::FormUpdate) {
|
: QDialog(parent), m_downloader(NULL), m_readyToInstall(false), m_ui(new Ui::FormUpdate) {
|
||||||
m_ui->setupUi(this);
|
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 = m_ui->m_buttonBox->addButton(tr("Update"), QDialogButtonBox::ActionRole);
|
||||||
m_btnUpdate->setToolTip(tr("Download new installation files."));
|
m_btnUpdate->setToolTip(tr("Download new installation files."));
|
||||||
|
m_ui->m_lblCurrentRelease->setText(APP_VERSION);
|
||||||
connect(m_btnUpdate, SIGNAL(clicked()), this, SLOT(startUpdate()));
|
|
||||||
|
|
||||||
#if defined(Q_OS_OS2)
|
#if defined(Q_OS_OS2)
|
||||||
MessageBox::iconify(m_ui->m_buttonBox);
|
MessageBox::iconify(m_ui->m_buttonBox);
|
||||||
#endif
|
#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();
|
checkForUpdates();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user