1234567891011121314151617181920212223242526272829 |
- #include "EditorCommon.h"
- #include <QUndoGroup>
- UndoStack::UndoStack(QUndoGroup* group)
- : QUndoStack(group)
- , m_isExecuting(false)
- {
- }
- void UndoStack::SetIsExecuting(bool b)
- {
- m_isExecuting = b;
- }
- bool UndoStack::GetIsExecuting() const
- {
- return m_isExecuting;
- }
- #include <moc_UndoStack.cpp>
|