diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-05-08 10:47:35 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-05-08 10:47:35 +0200 |
commit | d3a0593ee14d77a311bd4f83c2de53ffb1eb07ae (patch) | |
tree | 4475c6e492c8e386bfbdcd6dee620c524cc82d49 /animations | |
parent | e8f7f4c38326d7113df2ad898ff864f480336341 (diff) |
Some cppcheck cleaning
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 2 |
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 |