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
Tobias Hunger
qt-creator
Commits
b7e6c397
Commit
b7e6c397
authored
Dec 04, 2008
by
hjk
Browse files
Fix small leak on exit.
I am not even sure we should do that.
parent
8b018225
Changes
2
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/breakhandler.cpp
View file @
b7e6c397
...
...
@@ -231,6 +231,11 @@ BreakHandler::BreakHandler(QObject *parent)
{
}
BreakHandler
::~
BreakHandler
()
{
clear
();
}
int
BreakHandler
::
columnCount
(
const
QModelIndex
&
parent
)
const
{
return
parent
.
isValid
()
?
0
:
6
;
...
...
src/plugins/debugger/breakhandler.h
View file @
b7e6c397
...
...
@@ -113,6 +113,7 @@ class BreakHandler : public QAbstractItemModel
public:
explicit
BreakHandler
(
QObject
*
parent
=
0
);
~
BreakHandler
();
void
removeAllBreakpoints
();
void
setAllPending
();
...
...
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