aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/targetsetupwidget.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-08-20 14:56:30 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-09-03 11:12:57 +0000
commit8d3aa026e0aa464dbc2e5ac24c479dc8a66e0e5e (patch)
tree47f9f6629c36175d624766486657fcdd6d3a7631 /src/plugins/projectexplorer/targetsetupwidget.cpp
parentc2ef84999704d741b4797df59faff7a3da6dc594 (diff)
Utils: Rename PathChooser::changed() signal.
The name is overly generic, particularly with a pathChanged() signal also present. Rename to "rawPathChanged", which adequately describes the semantics. Change-Id: Ia62b8b0a97a794cb6d5ad6b8ce0abcd36b5f5cdb Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/targetsetupwidget.cpp')
-rw-r--r--src/plugins/projectexplorer/targetsetupwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/targetsetupwidget.cpp b/src/plugins/projectexplorer/targetsetupwidget.cpp
index 22fc0063d4..3474be3f91 100644
--- a/src/plugins/projectexplorer/targetsetupwidget.cpp
+++ b/src/plugins/projectexplorer/targetsetupwidget.cpp
@@ -191,7 +191,7 @@ void TargetSetupWidget::addBuildInfo(BuildInfo *info, bool isImport)
connect(checkbox, SIGNAL(toggled(bool)),
this, SLOT(checkBoxToggled(bool)));
- connect(pathChooser, SIGNAL(changed(QString)),
+ connect(pathChooser, SIGNAL(rawPathChanged(QString)),
this, SLOT(pathChanged()));
m_checkboxes.append(checkbox);