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/MethodAction.cpp

    r0012e6 r521e29  
    2525
    2626
    27 ActionState* MethodAction::performCall() {
     27Action::state_ptr MethodAction::performCall() {
    2828  executeMethod();
    2929  // we don't have a state to save so we return Action::success
     
    3131}
    3232
    33 ActionState* MethodAction::performUndo(ActionState*) {
     33Action::state_ptr MethodAction::performUndo(Action::state_ptr) {
    3434  ASSERT(0,"Cannot undo a MethodAction");
    3535  return Action::success;
    3636}
    3737
    38 ActionState* MethodAction::performRedo(ActionState*){
     38Action::state_ptr MethodAction::performRedo(Action::state_ptr){
    3939  ASSERT(0,"Cannot redo a MethodAction");
    4040  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.