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
675e0b2e
Commit
675e0b2e
authored
Nov 30, 2009
by
dt
Browse files
Disable connects that currently don't work
parent
99849441
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectwindow.cpp
View file @
675e0b2e
...
...
@@ -522,8 +522,9 @@ BuildConfigurationComboBox::BuildConfigurationComboBox(Project *p, QWidget *pare
if
(
index
!=
-
1
)
m_comboBox
->
setCurrentIndex
(
index
);
connect
(
p
,
SIGNAL
(
buildConfigurationDisplayNameChanged
(
ProjectExplorer
::
BuildConfiguration
*
)),
this
,
SLOT
(
nameChanged
(
ProjectExplorer
::
BuildConfiguration
*
)));
// TODO
// connect(p, SIGNAL(buildConfigurationDisplayNameChanged(ProjectExplorer::BuildConfiguration *)),
// this, SLOT(nameChanged(ProjectExplorer::BuildConfiguration *)));
connect
(
p
,
SIGNAL
(
activeBuildConfigurationChanged
()),
this
,
SLOT
(
activeConfigurationChanged
()));
connect
(
p
,
SIGNAL
(
addedBuildConfiguration
(
ProjectExplorer
::
Project
*
,
ProjectExplorer
::
BuildConfiguration
*
)),
...
...
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
675e0b2e
...
...
@@ -81,8 +81,9 @@ Qt4RunConfiguration::Qt4RunConfiguration(Qt4Project *pro, const QString &proFile
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()));
}
Qt4RunConfiguration
::~
Qt4RunConfiguration
()
...
...
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