Changeset 15acdb for src/Actions/ActionSequence.cpp
- Timestamp:
- Sep 13, 2017, 5:20:35 PM (8 years ago)
- Children:
- 1e4f0a
- Parents:
- 17fceea
- File:
- 
      - 1 edited
 
 - 
          
  src/Actions/ActionSequence.cpp (modified) (3 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      src/Actions/ActionSequence.cppr17fceea r15acdb 47 47 48 48 ActionSequence::ActionSequence() : 49 loop(1) 49 loop(1), 50 step(0) 50 51 {} 51 52 52 53 ActionSequence::ActionSequence(const ActionSequence &_other) : 53 loop(1) 54 loop(1), 55 step(0) 54 56 { 55 57 // we need to override copy cstor as we have pointer referenced objects … … 114 116 void ActionSequence::callAll() 115 117 { 116 for (s ize_t i=0;i<loop;++i)118 for (step=0;step<loop;++step) 117 119 for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){ 118 120 // we want to have a global bookkeeping for all actions in the sequence, so … … 128 130 { 129 131 stateSet states; 130 for (s ize_t i=0;i<loop;++i)132 for (step=0;step<loop;++step) 131 133 for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){ 132 134 // we want to have a global bookkeeping for all actions in the sequence, so 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
