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
592c1fba
Commit
592c1fba
authored
Nov 30, 2009
by
dt
Browse files
Fix signal broken in the porting to new buildconfiguration
parent
91198532
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qmakestep.cpp
View file @
592c1fba
...
...
@@ -250,8 +250,8 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
connect
(
m_ui
.
buildConfigurationComboBox
,
SIGNAL
(
currentIndexChanged
(
int
)),
this
,
SLOT
(
buildConfigurationChanged
()));
connect
(
step
,
SIGNAL
(
changed
()),
this
,
SLOT
(
update
()));
connect
(
step
->
buildConfiguration
(),
SIGNAL
(
qtVersionChanged
(
ProjectExplorer
::
BuildConfiguration
*
)),
this
,
SLOT
(
qtVersionChanged
(
ProjectExplorer
::
BuildConfiguration
*
)));
connect
(
step
->
buildConfiguration
(),
SIGNAL
(
qtVersionChanged
()),
this
,
SLOT
(
qtVersionChanged
()));
}
QString
QMakeStepConfigWidget
::
summaryText
()
const
...
...
@@ -259,7 +259,7 @@ QString QMakeStepConfigWidget::summaryText() const
return
m_summaryText
;
}
void
QMakeStepConfigWidget
::
qtVersionChanged
(
ProjectExplorer
::
BuildConfiguration
*
bc
)
void
QMakeStepConfigWidget
::
qtVersionChanged
()
{
updateTitleLabel
();
updateEffectiveQMakeCall
();
...
...
src/plugins/qt4projectmanager/qmakestep.h
View file @
592c1fba
...
...
@@ -116,7 +116,7 @@ private slots:
void
qmakeArgumentsLineEditTextEdited
();
void
buildConfigurationChanged
();
void
update
();
void
qtVersionChanged
(
ProjectExplorer
::
BuildConfiguration
*
bc
);
void
qtVersionChanged
();
private:
void
updateTitleLabel
();
void
updateEffectiveQMakeCall
();
...
...
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