summaryrefslogtreecommitdiff
path: root/animations/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-08-03 15:22:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-08-03 15:22:15 +0000
commit899609580af6412b2231744ffdecab4cb7538ccc (patch)
tree5ec6f184e1172f6bb4ef0707b8c051d662fe4bb0 /animations/source
parentb5c3f7a8065af689e4bac192f2d3bcd93703d096 (diff)
#i10000#: signed/unsigned comparision
Diffstat (limited to 'animations/source')
-rw-r--r--animations/source/animcore/animcore.cxx6
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 )