Changes in src/Actions/ActionHistory.cpp [bf3817:8006ee]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionHistory.cpp
rbf3817 r8006ee 5 5 * Author: crueger 6 6 */ 7 8 // include config.h9 #ifdef HAVE_CONFIG_H10 #include <config.h>11 #endif12 7 13 8 #include "Helpers/MemDebug.hpp" … … 133 128 134 129 bool ActionHistory::RedoAction::isActive(){ 135 std::cout << "Redo" << std::endl;136 130 return hist->hasRedo(); 137 131 } … … 143 137 144 138 Action::state_ptr ActionHistory::RedoAction::performCall(){ 139 std::cout << "Redo" << std::endl; 145 140 hist->redoLast(); 146 141 return Action::success;
Note:
See TracChangeset
for help on using the changeset viewer.