* Missing initialization of fStackTrace.

* Removed unnecessary TableRowInvoked().


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31156 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-06-21 13:03:08 +00:00
parent ea603b7af3
commit a0a50d370e
2 changed files with 1 additions and 7 deletions
@@ -151,6 +151,7 @@ private:
StackTraceView::StackTraceView(Listener* listener)
:
BGroupView(B_VERTICAL),
fStackTrace(NULL),
fFramesTable(NULL),
fFramesTableModel(NULL),
fListener(listener)
@@ -221,12 +222,6 @@ StackTraceView::TableSelectionChanged(Table* table)
}
void
StackTraceView::TableRowInvoked(Table* table, int32 rowIndex)
{
}
void
StackTraceView::_Init()
{
@@ -35,7 +35,6 @@ private:
private:
// TableListener
virtual void TableSelectionChanged(Table* table);
virtual void TableRowInvoked(Table* table, int32 rowIndex);
void _Init();