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