Changes in / [4b7650:994713]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionHistory.cpp
r4b7650 r994713 140 140 141 141 bool ActionHistory::RedoAction::isActive(){ 142 std::cout << "Redo" << std::endl;143 142 return hist->hasRedo(); 144 143 } … … 150 149 151 150 Action::state_ptr ActionHistory::RedoAction::performCall(){ 151 std::cout << "Redo" << std::endl; 152 152 hist->redoLast(); 153 153 return Action::success;
Note:
See TracChangeset
for help on using the changeset viewer.