Disable currently not working connect

This commit is contained in:
dt
2009-11-30 14:13:59 +01:00
parent 68dae8bcaf
commit a8c4505475
2 changed files with 5 additions and 4 deletions

View File

@@ -60,8 +60,8 @@ CMakeRunConfiguration::CMakeRunConfiguration(CMakeProject *pro, const QString &t
this, SIGNAL(baseEnvironmentChanged())); this, SIGNAL(baseEnvironmentChanged()));
// TODO // TODO
connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)), // connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)),
this, SIGNAL(baseEnvironmentChanged())); // this, SIGNAL(baseEnvironmentChanged()));
} }
CMakeRunConfiguration::~CMakeRunConfiguration() CMakeRunConfiguration::~CMakeRunConfiguration()

View File

@@ -252,8 +252,9 @@ CustomExecutableRunConfiguration::CustomExecutableRunConfiguration(Project *pro)
connect(pro, SIGNAL(activeBuildConfigurationChanged()), connect(pro, SIGNAL(activeBuildConfigurationChanged()),
this, SIGNAL(baseEnvironmentChanged())); this, SIGNAL(baseEnvironmentChanged()));
connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)), // TODO
this, SIGNAL(baseEnvironmentChanged())); // connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)),
// this, SIGNAL(baseEnvironmentChanged()));
} }