Changeset 521e29 for molecuilder/src/Actions/MethodAction.cpp
- Timestamp:
- Mar 25, 2010, 10:06:49 AM (16 years ago)
- Children:
- 8d9984
- Parents:
- 0012e6
- File:
-
- 1 edited
-
molecuilder/src/Actions/MethodAction.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/MethodAction.cpp
r0012e6 r521e29 25 25 26 26 27 Action State*MethodAction::performCall() {27 Action::state_ptr MethodAction::performCall() { 28 28 executeMethod(); 29 29 // we don't have a state to save so we return Action::success … … 31 31 } 32 32 33 Action State* MethodAction::performUndo(ActionState*) {33 Action::state_ptr MethodAction::performUndo(Action::state_ptr) { 34 34 ASSERT(0,"Cannot undo a MethodAction"); 35 35 return Action::success; 36 36 } 37 37 38 Action State* MethodAction::performRedo(ActionState*){38 Action::state_ptr MethodAction::performRedo(Action::state_ptr){ 39 39 ASSERT(0,"Cannot redo a MethodAction"); 40 40 return Action::success;
Note:
See TracChangeset
for help on using the changeset viewer.
