Dependency Panel: Update UI texts

Update UI texts as suggested by Leena

Change-Id: I5baa7400f0755fad57b908b0bd7330c2bbb94a1a
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-11-10 11:00:44 +01:00
committed by Leena Miettinen
parent fa74c127aa
commit f6056a024c
2 changed files with 6 additions and 5 deletions

View File

@@ -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

View File

@@ -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);