Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionHistory.cpp

    r8006ee rbf3817  
    55 *      Author: crueger
    66 */
     7
     8// include config.h
     9#ifdef HAVE_CONFIG_H
     10#include <config.h>
     11#endif
    712
    813#include "Helpers/MemDebug.hpp"
     
    128133
    129134bool ActionHistory::RedoAction::isActive(){
     135  std::cout << "Redo" << std::endl;
    130136  return hist->hasRedo();
    131137}
     
    137143
    138144Action::state_ptr ActionHistory::RedoAction::performCall(){
    139   std::cout << "Redo" << std::endl;
    140145  hist->redoLast();
    141146  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.