[Haiku-commits] r31156 - haiku/trunk/src/apps/debugger/gui/team_window
bonefish at BerliOS
bonefish at mail.berlios.de
Sun Jun 21 15:03:08 CEST 2009
Author: bonefish
Date: 2009-06-21 15:03:08 +0200 (Sun, 21 Jun 2009)
New Revision: 31156
ViewCVS: http://svn.berlios.de/viewcvs/haiku?rev=31156&view=rev
Modified:
haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.cpp
haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.h
Log:
* Missing initialization of fStackTrace.
* Removed unnecessary TableRowInvoked().
Modified: haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.cpp
===================================================================
--- haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.cpp 2009-06-21 13:01:40 UTC (rev 31155)
+++ haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.cpp 2009-06-21 13:03:08 UTC (rev 31156)
@@ -151,6 +151,7 @@
StackTraceView::StackTraceView(Listener* listener)
:
BGroupView(B_VERTICAL),
+ fStackTrace(NULL),
fFramesTable(NULL),
fFramesTableModel(NULL),
fListener(listener)
@@ -222,12 +223,6 @@
void
-StackTraceView::TableRowInvoked(Table* table, int32 rowIndex)
-{
-}
-
-
-void
StackTraceView::_Init()
{
fFramesTable = new Table("register list", 0, B_FANCY_BORDER);
Modified: haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.h
===================================================================
--- haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.h 2009-06-21 13:01:40 UTC (rev 31155)
+++ haiku/trunk/src/apps/debugger/gui/team_window/StackTraceView.h 2009-06-21 13:03:08 UTC (rev 31156)
@@ -35,7 +35,6 @@
private:
// TableListener
virtual void TableSelectionChanged(Table* table);
- virtual void TableRowInvoked(Table* table, int32 rowIndex);
void _Init();
More information about the Haiku-commits
mailing list