summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Client/Code/Core/Commands/CmdStack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Client/Code/Core/Commands/CmdStack.h')
-rw-r--r--src/Authoring/Client/Code/Core/Commands/CmdStack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Authoring/Client/Code/Core/Commands/CmdStack.h b/src/Authoring/Client/Code/Core/Commands/CmdStack.h
index 7388703d..9597f5a6 100644
--- a/src/Authoring/Client/Code/Core/Commands/CmdStack.h
+++ b/src/Authoring/Client/Code/Core/Commands/CmdStack.h
@@ -102,15 +102,15 @@ public:
protected:
void EmptyUndoStack();
- ICmdStackModifier *m_CommandStackModifier;
+ ICmdStackModifier *m_CommandStackModifier = nullptr;
TCmdList m_UndoList;
TCmdList m_RedoList;
bool m_undoingOrRedoing = false;
- unsigned long m_MaxUndoStackSize;
+ unsigned long m_MaxUndoStackSize = 100;
- CModificationListener *m_Listener;
+ CModificationListener *m_Listener = nullptr;
};
#endif // INCLUDED_CMD_STACK_H