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:
@@ -109,6 +109,7 @@ TeamWindow::TeamWindow(::Team* team, UserInterfaceListener* listener)
|
|||||||
fStepOverButton(NULL),
|
fStepOverButton(NULL),
|
||||||
fStepIntoButton(NULL),
|
fStepIntoButton(NULL),
|
||||||
fStepOutButton(NULL),
|
fStepOutButton(NULL),
|
||||||
|
fInspectorWindow(NULL),
|
||||||
fSourceLocatePanel(NULL)
|
fSourceLocatePanel(NULL)
|
||||||
{
|
{
|
||||||
fTeam->Lock();
|
fTeam->Lock();
|
||||||
|
|||||||
Reference in New Issue
Block a user