Update of /cvsroot/opal/opal/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11216/src
Modified Files:
Simulator.cpp
Log Message:
fixed bug - the Simulator's PostStepEventHandler is now called at the right time
Index: Simulator.cpp
===================================================================
RCS file: /cvsroot/opal/opal/src/Simulator.cpp,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** Simulator.cpp 21 Mar 2005 04:29:05 -0000 1.48
--- Simulator.cpp 21 Mar 2005 16:31:22 -0000 1.49
***************
*** 221,230 ****
internal_handlePendingCollisionEvents();
}
! // Fire an event to the PostStepEventHandler, if one exists.
! if (mPostStepEventHandler)
! {
! mPostStepEventHandler->handlePostStepEvent();
! }
}
--- 221,230 ----
internal_handlePendingCollisionEvents();
}
+ }
! // Fire an event to the PostStepEventHandler, if one exists.
! if (mPostStepEventHandler)
! {
! mPostStepEventHandler->handlePostStepEvent();
}
|