forked from qt-creator/qt-creator
Qt4RunConfiguration & CMakeRunConfiguration: Fix connects
Ups were wrong in the last commit
This commit is contained in:
@@ -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()));
|
||||||
|
|||||||
@@ -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)));
|
||||||
|
|||||||
Reference in New Issue
Block a user