diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-30 11:38:08 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2014-06-12 16:10:03 +0200 |
commit | ce37f05297f17cadd6d73771d0ceeaa3e73080c3 (patch) | |
tree | 7c1a4e9530254046333ddee67138098f95625891 /src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp | |
parent | d0f00cc29d1f53ab6c3378046827d8abaa844cbd (diff) | |
download | qt-creator-ce37f05297f17cadd6d73771d0ceeaa3e73080c3.tar.gz |
BaseFileWizard: Get rid of applyExtensionPageShortTitle(...)
That method was used to set a title in the progress view of the wizard
that is different from the page title. That is used exactly once and
there it adds more confusion than it helps. So get rid of the whole
thing.
Consistently set the "shortTitle" property instead for all wizards
that want to have a separate short title.
Change-Id: Ia4881e9c00891058629491f9e9de4ac421c59727
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp index c0d4fd495e..18f54b2c0a 100644 --- a/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp +++ b/src/plugins/qmlprojectmanager/qmlapplicationwizardpages.cpp @@ -29,6 +29,9 @@ #include "qmlapplicationwizardpages.h" #include "qmlapp.h" + +#include <utils/wizard.h> + #include <QComboBox> #include <QLabel> #include <QVBoxLayout> @@ -69,6 +72,8 @@ QmlComponentSetPage::QmlComponentSetPage(QWidget *parent) mainLayout->addLayout(l); mainLayout->addWidget(d->m_detailedDescriptionLabel); + + setProperty(Utils::SHORT_TITLE_PROPERTY, tr("Component Set")); } QmlComponentSetPage::~QmlComponentSetPage() |