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
Marco Bubke
flatpak-qt-creator
Commits
40bfe137
Commit
40bfe137
authored
Feb 04, 2010
by
con
Browse files
Remove some duplicate connects.
parent
f52e1887
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/miniprojecttargetselector.cpp
View file @
40bfe137
...
...
@@ -154,11 +154,6 @@ MiniTargetWidget::MiniTargetWidget(Target *target, QWidget *parent) :
Q_FOREACH
(
RunConfiguration
*
rc
,
m_target
->
runConfigurations
())
addRunConfiguration
(
rc
);
connect
(
m_target
,
SIGNAL
(
addedBuildConfiguration
(
ProjectExplorer
::
BuildConfiguration
*
)),
SLOT
(
addBuildConfiguration
(
ProjectExplorer
::
BuildConfiguration
*
)));
connect
(
m_target
,
SIGNAL
(
removedBuildConfiguration
(
ProjectExplorer
::
BuildConfiguration
*
)),
SLOT
(
addBuildConfiguration
(
ProjectExplorer
::
BuildConfiguration
*
)));
connect
(
m_target
,
SIGNAL
(
addedRunConfiguration
(
ProjectExplorer
::
RunConfiguration
*
)),
SLOT
(
addRunConfiguration
(
ProjectExplorer
::
RunConfiguration
*
)));
connect
(
m_target
,
SIGNAL
(
removedRunConfiguration
(
ProjectExplorer
::
RunConfiguration
*
)),
...
...
@@ -166,8 +161,6 @@ MiniTargetWidget::MiniTargetWidget(Target *target, QWidget *parent) :
connect
(
m_runComboBox
,
SIGNAL
(
currentIndexChanged
(
int
)),
SLOT
(
setActiveRunConfiguration
(
int
)));
connect
(
m_target
,
SIGNAL
(
activeBuildConfigurationChanged
(
ProjectExplorer
::
BuildConfiguration
*
)),
SLOT
(
setActiveBuildConfiguration
()));
connect
(
m_target
,
SIGNAL
(
activeRunConfigurationChanged
(
ProjectExplorer
::
RunConfiguration
*
)),
SLOT
(
setActiveRunConfiguration
()));
...
...
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