aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRene Gollent <anevilyak@gmail.com>2012-07-13 19:49:07 -0400
committerRene Gollent <anevilyak@gmail.com>2012-07-13 19:49:07 -0400
commitf55410e169aa22948520f94ec238045f9de05b27 (patch)
tree0b9586538d308189732e9b43d2070b17321c4827
parent975867a4ffb3f114b8d6e5db0fb557fd9101e05a (diff)
Fix uninitialized member variable.hrev44334
- This would randomly prevent the inspector window from being usable since we wouldn't create it, thinking it already existed.
-rw-r--r--src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
index bb8ca25c42..f8d7f772cf 100644
--- a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
+++ b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
@@ -109,6 +109,7 @@ TeamWindow::TeamWindow(::Team* team, UserInterfaceListener* listener)
fStepOverButton(NULL),
fStepIntoButton(NULL),
fStepOutButton(NULL),
+ fInspectorWindow(NULL),
fSourceLocatePanel(NULL)
{
fTeam->Lock();