diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-20 20:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-20 23:48:07 +0300 |
commit | 2744e4fa8f39cd06bfe557a5a3881830bd11501c (patch) | |
tree | 2ec96c6ee820cfe0e5e76480fe828501bf555a4b /src/resources/action.cpp | |
parent | 531433248fbad49e2b8e9d90de9855f3ea9b2257 (diff) | |
download | plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.gz plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.bz2 plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.xz plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.zip |
Last part with FOR_EACH changes.
Diffstat (limited to 'src/resources/action.cpp')
-rw-r--r-- | src/resources/action.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/resources/action.cpp b/src/resources/action.cpp index 752446e5e..362fa0370 100644 --- a/src/resources/action.cpp +++ b/src/resources/action.cpp @@ -72,8 +72,7 @@ void Action::setAnimation(const int direction, Animation *const animation) void Action::setLastFrameDelay(const int delay) { - for (AnimationIter it = mAnimations.begin(), - it_end = mAnimations.end(); it != it_end; ++ it) + FOR_EACH (AnimationIter, it, mAnimations) { Animation *const animation = (*it).second; if (!animation) |