summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Client/Code/Core/Commands/CmdStack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Client/Code/Core/Commands/CmdStack.cpp')
-rw-r--r--src/Authoring/Client/Code/Core/Commands/CmdStack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Authoring/Client/Code/Core/Commands/CmdStack.cpp b/src/Authoring/Client/Code/Core/Commands/CmdStack.cpp
index 76f51126..a1c6e943 100644
--- a/src/Authoring/Client/Code/Core/Commands/CmdStack.cpp
+++ b/src/Authoring/Client/Code/Core/Commands/CmdStack.cpp
@@ -132,7 +132,7 @@ bool CCmdStack::ExecuteCommand(CCmd *inCommand)
void CCmdStack::Undo()
{
if (m_CommandStackModifier) {
- if (m_CommandStackModifier->PreUndo() == false)
+ if (m_CommandStackModifier->preUndo() == false)
return;
}
@@ -198,7 +198,7 @@ void CCmdStack::Redo()
//=============================================================================
bool CCmdStack::CanUndo()
{
- if (m_CommandStackModifier && m_CommandStackModifier->CanUndo())
+ if (m_CommandStackModifier && m_CommandStackModifier->canUndo())
return true;
return m_UndoList.size() > 0;
}