Skip to content
Snippets Groups Projects
Commit 2ea07637 authored by hjk's avatar hjk
Browse files

debugger: all leaks must be fixed

Reviewed-by: dt
parent 908b0519
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -50,6 +50,7 @@ class StackWindow : public QTreeView
public:
StackWindow(DebuggerManager *manager, QWidget *parent = 0);
~StackWindow();
signals:
void frameActivated(int);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment