Qt4RunConfiguration & CMakeRunConfiguration: Fix connects

Ups were wrong in the last commit
This commit is contained in:
dt
2010-09-27 18:09:54 +01:00
parent 4389f02097
commit 218d2527fc
2 changed files with 3 additions and 3 deletions

View File

@@ -431,7 +431,7 @@ CMakeRunConfigurationWidget::CMakeRunConfigurationWidget(CMakeRunConfiguration *
connect(m_environmentWidget, SIGNAL(userChangesChanged()), connect(m_environmentWidget, SIGNAL(userChangesChanged()),
this, SLOT(userChangesChanged())); this, SLOT(userChangesChanged()));
connect(m_cmakeRunConfiguration, SIGNAL(workingDirectoryChanged(QString)), connect(m_cmakeRunConfiguration, SIGNAL(baseWorkingDirectoryChanged(QString)),
this, SLOT(workingDirectoryChanged(QString))); this, SLOT(workingDirectoryChanged(QString)));
connect(m_cmakeRunConfiguration, SIGNAL(baseEnvironmentChanged()), connect(m_cmakeRunConfiguration, SIGNAL(baseEnvironmentChanged()),
this, SLOT(baseEnvironmentChanged())); this, SLOT(baseEnvironmentChanged()));

View File

@@ -302,10 +302,10 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
connect(m_environmentWidget, SIGNAL(userChangesChanged()), connect(m_environmentWidget, SIGNAL(userChangesChanged()),
this, SLOT(userChangesEdited())); this, SLOT(userChangesEdited()));
connect(qt4RunConfiguration, SIGNAL(workingDirectoryChanged(QString)), connect(qt4RunConfiguration, SIGNAL(baseWorkingDirectoryChanged(QString)),
this, SLOT(workingDirectoryChanged(QString))); this, SLOT(workingDirectoryChanged(QString)));
connect(qt4RunConfiguration, SIGNAL(commandLineArgumentsChanged(QString)), connect(qt4RunConfiguration, SIGNAL(baseCommandLineArgumentsChanged(QString)),
this, SLOT(commandLineArgumentsChanged(QString))); this, SLOT(commandLineArgumentsChanged(QString)));
connect(qt4RunConfiguration, SIGNAL(runModeChanged(ProjectExplorer::LocalApplicationRunConfiguration::RunMode)), connect(qt4RunConfiguration, SIGNAL(runModeChanged(ProjectExplorer::LocalApplicationRunConfiguration::RunMode)),
this, SLOT(runModeChanged(ProjectExplorer::LocalApplicationRunConfiguration::RunMode))); this, SLOT(runModeChanged(ProjectExplorer::LocalApplicationRunConfiguration::RunMode)));