Fix uninitialized member variable.

- This would randomly prevent the inspector window from being usable
  since we wouldn't create it, thinking it already existed.
This commit is contained in:
Rene Gollent 2012-07-13 19:49:07 -04:00
parent 975867a4ff
commit f55410e169

View File

@ -109,6 +109,7 @@ TeamWindow::TeamWindow(::Team* team, UserInterfaceListener* listener)
fStepOverButton(NULL),
fStepIntoButton(NULL),
fStepOutButton(NULL),
fInspectorWindow(NULL),
fSourceLocatePanel(NULL)
{
fTeam->Lock();