summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@digia.com>2012-06-08 07:09:53 +0300
committerSimo Fält <simo.falt@nokia.com>2012-06-12 13:11:07 +0200
commite1c179e2e6baf9dd62f2c22c167b0bb391ef5c95 (patch)
tree2b4c34e786a296a9b925f09a40b64e997935461f
parent2137b6c7b752406714de7e805d8fe3cc196f8658 (diff)
Disable Updater and Maintenance Tool temporarily only
Disable Updater and Maintenance Tool temporarily only. Disable these to avoid confusion for user as long we only provide offline installers. Once we are ready to provide online installers as well revert this change. Change-Id: Id02b380896a69f99dcdf5e7debc20302bfd2e605 Reviewed-by: Simo Fält <simo.falt@nokia.com>
-rw-r--r--src/sdk/installerbasecommons.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sdk/installerbasecommons.cpp b/src/sdk/installerbasecommons.cpp
index 62453929d..0f6411f00 100644
--- a/src/sdk/installerbasecommons.cpp
+++ b/src/sdk/installerbasecommons.cpp
@@ -60,11 +60,13 @@ IntroductionPageImpl::IntroductionPageImpl(QInstaller::PackageManagerCore *core)
QVBoxLayout *layout = new QVBoxLayout(widget);
m_packageManager = new QRadioButton(tr("Package manager"), this);
+ m_packageManager->setEnabled(false); // ### Todo: Remove for online installers after Beta
layout->addWidget(m_packageManager);
m_packageManager->setChecked(core->isPackageManager());
connect(m_packageManager, SIGNAL(toggled(bool)), this, SLOT(setPackageManager(bool)));
m_updateComponents = new QRadioButton(tr("Update components"), this);
+ m_updateComponents->setEnabled(false); // ### Todo: Remove for online installers after Beta
layout->addWidget(m_updateComponents);
m_updateComponents->setChecked(core->isUpdater());
connect(m_updateComponents, SIGNAL(toggled(bool)), this, SLOT(setUpdater(bool)));