diff --git a/src/apps/debugger/gui/team_window/StackTraceView.cpp b/src/apps/debugger/gui/team_window/StackTraceView.cpp index 1c3e2841f7..b8b9f1239e 100644 --- a/src/apps/debugger/gui/team_window/StackTraceView.cpp +++ b/src/apps/debugger/gui/team_window/StackTraceView.cpp @@ -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() { diff --git a/src/apps/debugger/gui/team_window/StackTraceView.h b/src/apps/debugger/gui/team_window/StackTraceView.h index f7442e8e33..8a890e1c4d 100644 --- a/src/apps/debugger/gui/team_window/StackTraceView.h +++ b/src/apps/debugger/gui/team_window/StackTraceView.h @@ -35,7 +35,6 @@ private: private: // TableListener virtual void TableSelectionChanged(Table* table); - virtual void TableRowInvoked(Table* table, int32 rowIndex); void _Init();