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
Marco Bubke
flatpak-qt-creator
Commits
2ea07637
Commit
2ea07637
authored
Nov 04, 2009
by
hjk
Browse files
debugger: all leaks must be fixed
Reviewed-by: dt
parent
908b0519
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/stackwindow.cpp
View file @
2ea07637
...
...
@@ -73,6 +73,11 @@ StackWindow::StackWindow(DebuggerManager *manager, QWidget *parent)
this
,
SLOT
(
showAddressColumn
(
bool
)));
}
StackWindow
::~
StackWindow
()
{
delete
m_disassemblerAgent
;
}
void
StackWindow
::
showAddressColumn
(
bool
on
)
{
setColumnHidden
(
4
,
!
on
);
...
...
src/plugins/debugger/stackwindow.h
View file @
2ea07637
...
...
@@ -50,6 +50,7 @@ class StackWindow : public QTreeView
public:
StackWindow
(
DebuggerManager
*
manager
,
QWidget
*
parent
=
0
);
~
StackWindow
();
signals:
void
frameActivated
(
int
);
...
...
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