Skip to content
GitLab
Menu
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
e8dcccbb
Commit
e8dcccbb
authored
May 16, 2011
by
Tobias Hunger
Browse files
Fix possible crash in BuildStepsPage
Task-number: QTCREATORBUG-4894 Reviewed-by: Fawzi Mohamed
parent
32bc1c15
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildstepspage.cpp
View file @
e8dcccbb
...
...
@@ -93,6 +93,12 @@ void BuildStepListWidget::init(BuildStepList *bsl)
setupUi
();
if
(
m_buildStepList
)
{
disconnect
(
m_buildStepList
,
SIGNAL
(
stepInserted
(
int
)),
this
,
SLOT
(
addBuildStep
(
int
)));
disconnect
(
m_buildStepList
,
SIGNAL
(
stepRemoved
(
int
)),
this
,
SLOT
(
removeBuildStep
(
int
)));
disconnect
(
m_buildStepList
,
SIGNAL
(
stepMoved
(
int
,
int
)),
this
,
SLOT
(
stepMoved
(
int
,
int
)));
}
connect
(
bsl
,
SIGNAL
(
stepInserted
(
int
)),
this
,
SLOT
(
addBuildStep
(
int
)));
connect
(
bsl
,
SIGNAL
(
stepRemoved
(
int
)),
this
,
SLOT
(
removeBuildStep
(
int
)));
connect
(
bsl
,
SIGNAL
(
stepMoved
(
int
,
int
)),
this
,
SLOT
(
stepMoved
(
int
,
int
)));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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