summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectexplorer.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2012-03-29 13:11:00 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2012-03-29 16:53:56 +0200
commit89f3c1c2124c367e19d3d8087062a9e211e0f0e9 (patch)
treeba800792c9d98decd75105e8dc3144c62d5e08b6 /src/plugins/projectexplorer/projectexplorer.cpp
parent0ebd74d6c52522f74adeceff18de453544b55460 (diff)
downloadqt-creator-89f3c1c2124c367e19d3d8087062a9e211e0f0e9.tar.gz
RunConfig: Rename signal isEnabledChanged(bool)
Rename signal isEnabledChanged(bool) to enabledChanged() as that is also used by the BuildConfigurations. Change-Id: I9fc8906a2abbf9d19e21129309bee6ff5a142117 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorer.cpp')
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index 394db5e9c8..27904b5bf3 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -2206,14 +2206,14 @@ void ProjectExplorerPlugin::activeRunConfigurationChanged()
if (rc == previousRunConfiguration)
return;
if (previousRunConfiguration) {
- disconnect(previousRunConfiguration, SIGNAL(isEnabledChanged(bool)),
+ disconnect(previousRunConfiguration, SIGNAL(enabledChanged()),
this, SIGNAL(updateRunActions()));
disconnect(previousRunConfiguration->debuggerAspect(), SIGNAL(debuggersChanged()),
this, SIGNAL(updateRunActions()));
}
previousRunConfiguration = rc;
if (rc) {
- connect(rc, SIGNAL(isEnabledChanged(bool)),
+ connect(rc, SIGNAL(enabledChanged()),
this, SIGNAL(updateRunActions()));
connect(rc->debuggerAspect(), SIGNAL(debuggersChanged()),
this, SIGNAL(updateRunActions()));