summaryrefslogtreecommitdiff
path: root/sd/source/filter/ppt/pptinanimations.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/filter/ppt/pptinanimations.cxx')
-rw-r--r--sd/source/filter/ppt/pptinanimations.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx
index 5bfac6ade440..3d7daa85cc7d 100644
--- a/sd/source/filter/ppt/pptinanimations.cxx
+++ b/sd/source/filter/ppt/pptinanimations.cxx
@@ -91,7 +91,7 @@ const transition* transition::find( const OUString& rName )
while( p->mpName )
{
- if( rName.compareToAscii( p->mpName ) == 0 )
+ if( rName.equalsAscii( p->mpName ) )
return p;
p++;
@@ -698,7 +698,7 @@ bool AnimationImporter::convertAnimationNode( const Reference< XAnimationNode >&
{
while( p->mpMSName )
{
- if( aAttributeName.compareToAscii( p->mpMSName ) == 0 )
+ if( aAttributeName.equalsAscii( p->mpMSName ) )
break;
p++;