Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
218d2527
Commit
218d2527
authored
Sep 27, 2010
by
dt
Browse files
Qt4RunConfiguration & CMakeRunConfiguration: Fix connects
Ups were wrong in the last commit
parent
4389f020
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp
View file @
218d2527
...
...
@@ -431,7 +431,7 @@ CMakeRunConfigurationWidget::CMakeRunConfigurationWidget(CMakeRunConfiguration *
connect
(
m_environmentWidget
,
SIGNAL
(
userChangesChanged
()),
this
,
SLOT
(
userChangesChanged
()));
connect
(
m_cmakeRunConfiguration
,
SIGNAL
(
w
orkingDirectoryChanged
(
QString
)),
connect
(
m_cmakeRunConfiguration
,
SIGNAL
(
baseW
orkingDirectoryChanged
(
QString
)),
this
,
SLOT
(
workingDirectoryChanged
(
QString
)));
connect
(
m_cmakeRunConfiguration
,
SIGNAL
(
baseEnvironmentChanged
()),
this
,
SLOT
(
baseEnvironmentChanged
()));
...
...
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
218d2527
...
...
@@ -302,10 +302,10 @@ Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4Run
connect
(
m_environmentWidget
,
SIGNAL
(
userChangesChanged
()),
this
,
SLOT
(
userChangesEdited
()));
connect
(
qt4RunConfiguration
,
SIGNAL
(
w
orkingDirectoryChanged
(
QString
)),
connect
(
qt4RunConfiguration
,
SIGNAL
(
baseW
orkingDirectoryChanged
(
QString
)),
this
,
SLOT
(
workingDirectoryChanged
(
QString
)));
connect
(
qt4RunConfiguration
,
SIGNAL
(
c
ommandLineArgumentsChanged
(
QString
)),
connect
(
qt4RunConfiguration
,
SIGNAL
(
baseC
ommandLineArgumentsChanged
(
QString
)),
this
,
SLOT
(
commandLineArgumentsChanged
(
QString
)));
connect
(
qt4RunConfiguration
,
SIGNAL
(
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
)),
this
,
SLOT
(
runModeChanged
(
ProjectExplorer
::
LocalApplicationRunConfiguration
::
RunMode
)));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment