Ignore:
Timestamp:
Mar 25, 2010, 10:06:49 AM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
8d9984
Parents:
0012e6
Message:

Switched type of pointer used for ActionStates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Actions/Calculation_impl.hpp

    r0012e6 r521e29  
    2929
    3030template<typename T>
    31 ActionState* Calculation<T>::performCall(){
     31Action::state_ptr Calculation<T>::performCall(){
    3232  reset();
    3333  (*this)();
     
    3636
    3737template<typename T>
    38 ActionState* Calculation<T>::performUndo(ActionState*){
     38Action::state_ptr Calculation<T>::performUndo(Action::state_ptr){
    3939  ASSERT(0,"Cannot undo a calculation");
    4040  return Action::success;
    4141}
    4242template<typename T>
    43 ActionState* Calculation<T>::performRedo(ActionState*){
     43Action::state_ptr Calculation<T>::performRedo(Action::state_ptr){
    4444  ASSERT(0,"Cannot redo a calculation");
    4545  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.