logic: UndoRedo

UndoRedo working for ActiveTokensMessages
This commit is contained in:
Andreas Stallinger
2015-02-03 10:47:56 +01:00
parent 00f15a2ce3
commit 944554d034
27 changed files with 588 additions and 2 deletions
+3
View File
@@ -29,6 +29,9 @@ void ComponentManager::setup()
std::shared_ptr<Component> statusBarComponent = m_componentFactory->createStatusBarComponent();
m_components.push_back(statusBarComponent);
std::shared_ptr<Component> undoRedoComponent = m_componentFactory->createUndoRedoComponent();
m_components.push_back(undoRedoComponent);
}
ComponentManager::ComponentManager()