diff --git a/src/plugins/qnx/blackberryinstallwizardndkpage.ui b/src/plugins/qnx/blackberryinstallwizardndkpage.ui index 321892e5844ca3d655055ec388c5905eabf997f9..133d1ca012ed9ec3ab4fbd7adb9dd36575935d22 100644 --- a/src/plugins/qnx/blackberryinstallwizardndkpage.ui +++ b/src/plugins/qnx/blackberryinstallwizardndkpage.ui @@ -17,7 +17,7 @@ <item> <widget class="QLabel" name="label"> <property name="text"> - <string>Select NDK Path</string> + <string>Select Native SDK path:</string> </property> </widget> </item> diff --git a/src/plugins/qnx/blackberryinstallwizardpages.cpp b/src/plugins/qnx/blackberryinstallwizardpages.cpp index 39033251d5a66d191c2da8018efa6b2cd3b6ca48..10221f031b02d9e96e1c1526e470831d9b6d12b3 100644 --- a/src/plugins/qnx/blackberryinstallwizardpages.cpp +++ b/src/plugins/qnx/blackberryinstallwizardpages.cpp @@ -94,6 +94,7 @@ BlackBerryInstallWizardOptionPage::BlackBerryInstallWizardOptionPage(BlackBerryI , m_envFileChooser(new NdkPathChooser(NdkPathChooser::ManualMode)) , m_data(data) { + setTitle(tr("Options")); connect(m_addButton, SIGNAL(toggled(bool)), this, SLOT(handleOptionChanged())); connect(m_envFileChooser, SIGNAL(pathChanged(QString)), this, SLOT(handlePathChanged(QString))); } @@ -159,6 +160,7 @@ BlackBerryInstallWizardNdkPage::BlackBerryInstallWizardNdkPage(BlackBerryInstall , m_validNdkPath(false) { m_ui->setupUi(this); + setTitle(tr("Native SDK")); m_ui->verticalLayout->addWidget(m_ndkPathChooser); connect(m_ui->ndkPathListWidget, SIGNAL(itemSelectionChanged()), this, SLOT(setNdkPath())); connect(m_ndkPathChooser, SIGNAL(pathChanged(QString)), this, SLOT(setManualNdkPath())); @@ -242,6 +244,7 @@ BlackBerryInstallWizardTargetPage::BlackBerryInstallWizardTargetPage(BlackBerryI , m_targetListProcess(new QProcess(this)) { m_ui->setupUi(this); + setTitle(tr("Target")); connect(m_targetListProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(targetsListProcessFinished())); @@ -351,6 +354,11 @@ BlackBerryInstallWizardProcessPage::BlackBerryInstallWizardProcessPage(BlackBerr , m_targetProcess(new QProcess(this)) { m_ui->setupUi(this); + if (m_data.mode == BlackBerryInstallerDataHandler::UninstallMode) + setTitle(tr("Uninstalling")); + else + setTitle(tr("Installing")); + connect(m_targetProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(handleProcessFinished(int, QProcess::ExitStatus))); } @@ -451,6 +459,7 @@ BlackBerryInstallWizardFinalPage::BlackBerryInstallWizardFinalPage(BlackBerryIns : QWizardPage(parent) , m_data(data) { + setTitle(tr("Summary")); } void BlackBerryInstallWizardFinalPage::initializePage()