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

    r0012e6 r521e29  
    2525}
    2626
    27 ActionState* ErrorAction::performCall() {
     27Action::state_ptr ErrorAction::performCall() {
    2828  Log() << Verbose(0) << errorMsg << endl;
    2929  return Action::success;
    3030}
    31 ActionState* ErrorAction::performUndo(ActionState*) {
     31Action::state_ptr ErrorAction::performUndo(Action::state_ptr) {
    3232  ASSERT(0,"Undo called for an ErrorAction");
    3333  return Action::success;
    3434}
    3535
    36 ActionState* ErrorAction::performRedo(ActionState*) {
     36Action::state_ptr ErrorAction::performRedo(Action::state_ptr) {
    3737  ASSERT(0,"Redo called for an ErrorAction");
    3838  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.