uninitialized variables-gui

This commit is contained in:
AzaezelX 2020-05-11 15:03:27 -05:00
parent b9c207765e
commit 9fef1b3cd1
43 changed files with 119 additions and 33 deletions

View file

@ -150,6 +150,7 @@ GuiCanvas::GuiCanvas(): GuiControl(),
#else
mNumFences = 0;
#endif
mConsumeLastInputEvent = false;
}
GuiCanvas::~GuiCanvas()

View file

@ -57,6 +57,8 @@ GuiScriptNotifyCtrl::GuiScriptNotifyCtrl()
mOnResize = false;
mOnChildResized = false;
mOnParentResized = false;
mOnLoseFirstResponder = true;
mOnGainFirstResponder = true;
}
GuiScriptNotifyCtrl::~GuiScriptNotifyCtrl()

View file

@ -79,6 +79,7 @@ GuiCursor::GuiCursor()
mRenderOffset.set(0.0f,0.0f);
mExtent.set(1,1);
mTextureObject = NULL;
mBitmapName = StringTable->EmptyString();
}
GuiCursor::~GuiCursor()