From a0a50d370e71d4b63c283abbe680c0f29a848592 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 21 Jun 2009 13:03:08 +0000 Subject: [PATCH] * Missing initialization of fStackTrace. * Removed unnecessary TableRowInvoked(). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31156 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debugger/gui/team_window/StackTraceView.cpp | 7 +------ src/apps/debugger/gui/team_window/StackTraceView.h | 1 - 2 files changed, 1 insertion(+), 7 deletions(-) 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();