From f6056a024c402a159143fe960d4c09a5d34fe0d8 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Tue, 10 Nov 2015 11:00:44 +0100 Subject: [PATCH] Dependency Panel: Update UI texts Update UI texts as suggested by Leena Change-Id: I5baa7400f0755fad57b908b0bd7330c2bbb94a1a Reviewed-by: Leena Miettinen --- .../projects/creator-projects-settings-dependencies.qdoc | 8 ++++---- src/plugins/projectexplorer/dependenciespanel.cpp | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/src/projects/creator-projects-settings-dependencies.qdoc b/doc/src/projects/creator-projects-settings-dependencies.qdoc index 5eeff1f9ef5..c3a5fc0389f 100644 --- a/doc/src/projects/creator-projects-settings-dependencies.qdoc +++ b/doc/src/projects/creator-projects-settings-dependencies.qdoc @@ -51,10 +51,10 @@ \li Select projects that must be built before the current project is built. - \li Select the \uicontrol {Synchronize active kit, build, and deploy - configuration between projects} check box to use the same kit as - well as the same build and deploy configuration to build and deploy - all dependent projects loaded in a session. + \li Select the \uicontrol {Synchronize configuration} check box to + use the same kit as well as the same build and deploy + configuration to build and deploy all dependent projects loaded + in a session. \endlist diff --git a/src/plugins/projectexplorer/dependenciespanel.cpp b/src/plugins/projectexplorer/dependenciespanel.cpp index 019d614d44a..f569bc76e29 100644 --- a/src/plugins/projectexplorer/dependenciespanel.cpp +++ b/src/plugins/projectexplorer/dependenciespanel.cpp @@ -233,7 +233,8 @@ DependenciesWidget::DependenciesWidget(Project *project, QWidget *parent) layout->addItem(new QSpacerItem(0, 0 , QSizePolicy::Expanding, QSizePolicy::Fixed), 0, 1); m_cascadeSetActiveCheckBox = new QCheckBox; - m_cascadeSetActiveCheckBox->setText(tr("Synchronize active kit, build, and deploy configuration between projects.")); + m_cascadeSetActiveCheckBox->setText(tr("Synchronize configuration")); + m_cascadeSetActiveCheckBox->setToolTip(tr("Synchronize active kit, build, and deploy configuration between projects.")); m_cascadeSetActiveCheckBox->setChecked(SessionManager::isProjectConfigurationCascading()); connect(m_cascadeSetActiveCheckBox, &QCheckBox::toggled, SessionManager::instance(), &SessionManager::setProjectConfigurationCascading);