mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-09 23:40:42 +00:00
uninitialized variables-navigation
This commit is contained in:
parent
f52c3d5ed2
commit
a46bf3d7e5
5 changed files with 6 additions and 6 deletions
|
|
@ -125,7 +125,6 @@ protected:
|
|||
GFXStateBlockRef mZDisableSB;
|
||||
GFXStateBlockRef mZEnableSB;
|
||||
|
||||
bool mSavedDrag;
|
||||
bool mIsDirty;
|
||||
|
||||
String mMode;
|
||||
|
|
@ -169,15 +168,13 @@ protected:
|
|||
class GuiNavEditorUndoAction : public UndoAction
|
||||
{
|
||||
public:
|
||||
GuiNavEditorUndoAction(const UTF8* actionName) : UndoAction(actionName)
|
||||
GuiNavEditorUndoAction(const UTF8* actionName) : UndoAction(actionName), mNavEditor(NULL), mObjId(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
GuiNavEditorCtrl *mNavEditor;
|
||||
|
||||
SimObjectId mObjId;
|
||||
F32 mMetersPerSegment;
|
||||
U32 mSegmentsPerBatch;
|
||||
|
||||
virtual void undo();
|
||||
virtual void redo() { undo(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue