diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-26 00:51:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-11-27 20:33:15 +0300 |
commit | 0c20db8d108c4123fcc3ecb343759e68567a4d4e (patch) | |
tree | f577edeae7b4866d68c084a1eaa229e98c80ea8f /src/resources/animation | |
parent | 2be4fc5b4eee97938657c9c8be73c4b91c8b9826 (diff) | |
download | plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.gz plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.bz2 plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.xz plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.zip |
Remove extra ; from different code.
Diffstat (limited to 'src/resources/animation')
-rw-r--r-- | src/resources/animation/simpleanimation.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/resources/animation/simpleanimation.cpp b/src/resources/animation/simpleanimation.cpp index 11ec9a01b..de9375489 100644 --- a/src/resources/animation/simpleanimation.cpp +++ b/src/resources/animation/simpleanimation.cpp @@ -67,7 +67,7 @@ SimpleAnimation::SimpleAnimation(XmlNodeConstPtr animationNode, SimpleAnimation::~SimpleAnimation() { - delete2(mAnimation); + delete2(mAnimation) if (mImageSet != nullptr) { mImageSet->decRef(); @@ -185,7 +185,7 @@ void SimpleAnimation::initializeAnimation(XmlNodeConstPtr animationNode, if (index < 0) { - reportAlways("No valid value for 'index'"); + reportAlways("No valid value for 'index'") continue; } @@ -193,7 +193,7 @@ void SimpleAnimation::initializeAnimation(XmlNodeConstPtr animationNode, if (img == nullptr) { - reportAlways("No image at index %d", index); + reportAlways("No image at index %d", index) continue; } @@ -207,7 +207,7 @@ void SimpleAnimation::initializeAnimation(XmlNodeConstPtr animationNode, if (start < 0 || end < 0) { - reportAlways("No valid value for 'start' or 'end'"); + reportAlways("No valid value for 'start' or 'end'") continue; } @@ -217,7 +217,7 @@ void SimpleAnimation::initializeAnimation(XmlNodeConstPtr animationNode, if (img == nullptr) { - reportAlways("No image at index %d", start); + reportAlways("No image at index %d", start) continue; } |