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
a8c45054
Commit
a8c45054
authored
Nov 30, 2009
by
dt
Browse files
Disable currently not working connect
parent
68dae8bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp
View file @
a8c45054
...
...
@@ -60,8 +60,8 @@ CMakeRunConfiguration::CMakeRunConfiguration(CMakeProject *pro, const QString &t
this
,
SIGNAL
(
baseEnvironmentChanged
()));
// TODO
connect
(
pro
,
SIGNAL
(
environmentChanged
(
ProjectExplorer
::
BuildConfiguration
*
)),
this
,
SIGNAL
(
baseEnvironmentChanged
()));
//
connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)),
//
this, SIGNAL(baseEnvironmentChanged()));
}
CMakeRunConfiguration
::~
CMakeRunConfiguration
()
...
...
src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
View file @
a8c45054
...
...
@@ -252,8 +252,9 @@ CustomExecutableRunConfiguration::CustomExecutableRunConfiguration(Project *pro)
connect
(
pro
,
SIGNAL
(
activeBuildConfigurationChanged
()),
this
,
SIGNAL
(
baseEnvironmentChanged
()));
connect
(
pro
,
SIGNAL
(
environmentChanged
(
ProjectExplorer
::
BuildConfiguration
*
)),
this
,
SIGNAL
(
baseEnvironmentChanged
()));
// TODO
// connect(pro, SIGNAL(environmentChanged(ProjectExplorer::BuildConfiguration *)),
// this, SIGNAL(baseEnvironmentChanged()));
}
...
...
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