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

    r0012e6 r521e29  
    2525{}
    2626
    27 ActionState* ManipulateAtomsProcess::performCall(){
     27Action::state_ptr ManipulateAtomsProcess::performCall(){
    2828  World::getInstance().doManipulate(this);
    2929  return Action::success;
    3030}
    3131
    32 ActionState* ManipulateAtomsProcess::performUndo(ActionState*){
     32Action::state_ptr ManipulateAtomsProcess::performUndo(Action::state_ptr){
    3333  ASSERT(0,"Undo called for a ManipulateAtomsProcess");
    3434  return Action::success;
    3535}
    3636
    37 ActionState* ManipulateAtomsProcess::performRedo(ActionState*){
     37Action::state_ptr ManipulateAtomsProcess::performRedo(Action::state_ptr){
    3838  ASSERT(0,"Redo called for a ManipulateAtomsProcess");
    3939  return Action::success;
Note: See TracChangeset for help on using the changeset viewer.