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
f383e27c
Commit
f383e27c
authored
Oct 09, 2009
by
dt
Browse files
Fix memory leaks :)
parent
10a0647d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/project.cpp
View file @
f383e27c
...
...
@@ -59,6 +59,7 @@ Project::~Project()
qDeleteAll
(
m_buildSteps
);
qDeleteAll
(
m_cleanSteps
);
qDeleteAll
(
m_buildConfigurationValues
);
qDeleteAll
(
m_runConfigurations
);
delete
m_editorConfiguration
;
}
...
...
@@ -486,6 +487,7 @@ void Project::removeRunConfiguration(RunConfiguration* runConfiguration)
m_runConfigurations
.
removeOne
(
runConfiguration
);
emit
removedRunConfiguration
(
this
,
runConfiguration
->
name
());
delete
runConfiguration
;
}
RunConfiguration
*
Project
::
activeRunConfiguration
()
const
...
...
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