Changeset 10916 for code/branches/cpp11_v2/src/modules/docking/Dock.cc
- Timestamp:
- Dec 2, 2015, 11:22:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/modules/docking/Dock.cc
r10821 r10916 327 327 const DockingEffect* Dock::getEffect(unsigned int i) const 328 328 { 329 for ( const auto & elem: this->effects_)329 for (DockingEffect* effect : this->effects_) 330 330 { 331 331 if(i == 0) 332 return e lem;332 return effect; 333 333 i--; 334 334 } … … 346 346 const DockingAnimation* Dock::getAnimation(unsigned int i) const 347 347 { 348 for ( const auto & elem: this->animations_)348 for (DockingAnimation* animation : this->animations_) 349 349 { 350 350 if(i == 0) 351 return elem;351 return animation; 352 352 i--; 353 353 }
Note: See TracChangeset
for help on using the changeset viewer.