Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionHistory.cpp

    rbf3817 r8006ee  
    55 *      Author: crueger
    66 */
    7 
    8 // include config.h
    9 #ifdef HAVE_CONFIG_H
    10 #include <config.h>
    11 #endif
    127
    138#include "Helpers/MemDebug.hpp"
     
    133128
    134129bool ActionHistory::RedoAction::isActive(){
    135   std::cout << "Redo" << std::endl;
    136130  return hist->hasRedo();
    137131}
     
    143137
    144138Action::state_ptr ActionHistory::RedoAction::performCall(){
     139  std::cout << "Redo" << std::endl;
    145140  hist->redoLast();
    146141  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.