diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-03 15:22:15 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-03 15:22:15 +0000 |
commit | 899609580af6412b2231744ffdecab4cb7538ccc (patch) | |
tree | 5ec6f184e1172f6bb4ef0707b8c051d662fe4bb0 /animations | |
parent | b5c3f7a8065af689e4bac192f2d3bcd93703d096 (diff) |
#i10000#: signed/unsigned comparision
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index e217292a0ca9..ba034385358a 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -4,9 +4,9 @@ * * $RCSfile: animcore.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: hr $ $Date: 2007-08-02 18:25:21 $ + * last change: $Author: hr $ $Date: 2007-08-03 16:22:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -508,7 +508,7 @@ AnimationNode::AnimationNode( sal_Int16 nNodeType ) mnIterateType( ::com::sun::star::presentation::ShapeAnimationSubType::AS_WHOLE ), mfIterateInterval(0.0) { - OSL_ENSURE(nNodeType < sizeof(mpTypes)/sizeof(Sequence<Type>*), "NodeType out of range"); + OSL_ENSURE((sal_uInt32)nNodeType < sizeof(mpTypes)/sizeof(Sequence<Type>*), "NodeType out of range"); } AnimationNode::AnimationNode( const AnimationNode& rNode ) |