Changes in src/Actions/ActionSequence.cpp [c17aa8:af5384]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionSequence.cpp
rc17aa8 raf5384 37 37 #include "Actions/ActionSequence.hpp" 38 38 #include "Actions/Action.hpp" 39 #include "Actions/ActionExceptions.hpp"40 39 #include "UIElements/Dialog.hpp" 41 40 … … 54 53 { 55 54 // we need to override copy cstor as we have pointer referenced objects 56 for(actionSet:: const_iterator it=_other.actions.begin(); it!=_other.actions.end(); it++){55 for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){ 57 56 actions.push_back((*it)->clone()); 58 57 } … … 120 119 // we bypass the normal call 121 120 ActionState::ptr state = (*it)->performCall(); 122 if (state == Action::failure)123 throw ActionFailureException() << ActionNameString((*it)->getName());124 121 states.push_back(state); 125 122 }
Note:
See TracChangeset
for help on using the changeset viewer.