summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2002-10-29 14:36:20 +0000
committerChristian Lippka <cl@openoffice.org>2002-10-29 14:36:20 +0000
commitfa1d5b51fe0035b355866e1bfe6d986258752a69 (patch)
tree5a292a0b6ba6edb7fb9a5d95eb5da7d8a93d7f4f /xmloff/source
parent92807062b5743474413f7fe32c29e8bc23745912 (diff)
#104558# fixed service name for com.sun.star.presentation.Shape
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/draw/animexp.cxx8
-rw-r--r--xmloff/source/draw/animimp.cxx6
2 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/draw/animexp.cxx b/xmloff/source/draw/animexp.cxx
index 3825f36fa679..b0e7924a7bd3 100644
--- a/xmloff/source/draw/animexp.cxx
+++ b/xmloff/source/draw/animexp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: animexp.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: cl $ $Date: 2002-06-17 13:55:25 $
+ * last change: $Author: cl $ $Date: 2002-10-29 15:36:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -349,7 +349,7 @@ void XMLAnimationsExporter::prepare( Reference< XShape > xShape )
// check for presentation shape service
{
Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY );
- if( !xServiceInfo.is() || !xServiceInfo->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.shape" ) ) ) )
+ if( !xServiceInfo.is() || !xServiceInfo->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.Shape" ) ) ) )
return;
}
@@ -380,7 +380,7 @@ void XMLAnimationsExporter::collect( Reference< XShape > xShape )
// check for presentation shape service
{
Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY );
- if( !xServiceInfo.is() || !xServiceInfo->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.shape" ) ) ) )
+ if( !xServiceInfo.is() || !xServiceInfo->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.Shape" ) ) ) )
return;
}
diff --git a/xmloff/source/draw/animimp.cxx b/xmloff/source/draw/animimp.cxx
index 05559ec35bd1..7022f9871d53 100644
--- a/xmloff/source/draw/animimp.cxx
+++ b/xmloff/source/draw/animimp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: animimp.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: cl $ $Date: 2001-10-17 12:42:27 $
+ * last change: $Author: cl $ $Date: 2002-10-29 15:36:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -432,7 +432,7 @@ public:
msSoundOn( RTL_CONSTASCII_USTRINGPARAM( "SoundOn" ) ),
msSpeed( RTL_CONSTASCII_USTRINGPARAM( "Speed" ) ),
msTextEffect( RTL_CONSTASCII_USTRINGPARAM( "TextEffect" ) ),
- msPresShapeService( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.shape" ) ),
+ msPresShapeService( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.Shape" ) ),
msAnimPath( RTL_CONSTASCII_USTRINGPARAM( "AnimationPath" ) ),
msIsAnimation( RTL_CONSTASCII_USTRINGPARAM( "IsAnimation" ) )
{}