Changes in / [994713:4b7650]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionHistory.cpp

    r994713 r4b7650  
    140140
    141141bool ActionHistory::RedoAction::isActive(){
     142  std::cout << "Redo" << std::endl;
    142143  return hist->hasRedo();
    143144}
     
    149150
    150151Action::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.