summaryrefslogtreecommitdiff
path: root/animations
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-05-08 10:47:35 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-05-08 10:47:35 +0200
commitd3a0593ee14d77a311bd4f83c2de53ffb1eb07ae (patch)
tree4475c6e492c8e386bfbdcd6dee620c524cc82d49 /animations
parente8f7f4c38326d7113df2ad898ff864f480336341 (diff)
Some cppcheck cleaning
Diffstat (limited to 'animations')
-rw-r--r--animations/source/animcore/animcore.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx
index ec151c6bc870..2e3d192adf19 100644
--- a/animations/source/animcore/animcore.cxx
+++ b/animations/source/animcore/animcore.cxx
@@ -1874,7 +1874,7 @@ Reference< XAnimationNode > SAL_CALL AnimationNode::insertAfter( const Reference
if( ::std::find(maChilds.begin(), maChilds.end(), newChild) != maChilds.end() )
throw ElementExistException();
- before++;
+ ++before;
if( before != maChilds.end() )
maChilds.insert( before, newChild );
else