Changes in / [4b7650:994713]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionHistory.cpp

    r4b7650 r994713  
    140140
    141141bool ActionHistory::RedoAction::isActive(){
    142   std::cout << "Redo" << std::endl;
    143142  return hist->hasRedo();
    144143}
     
    150149
    151150Action::state_ptr ActionHistory::RedoAction::performCall(){
     151  std::cout << "Redo" << std::endl;
    152152  hist->redoLast();
    153153  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.