Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
e8dcccbb
Commit
e8dcccbb
authored
May 16, 2011
by
Tobias Hunger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix possible crash in BuildStepsPage
Task-number: QTCREATORBUG-4894 Reviewed-by: Fawzi Mohamed
parent
32bc1c15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/plugins/projectexplorer/buildstepspage.cpp
src/plugins/projectexplorer/buildstepspage.cpp
+6
-0
No files found.
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
Markdown
is supported
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