Kaydet (Commit) fa1d5b51 authored tarafından Christian Lippka's avatar Christian Lippka

#104558# fixed service name for com.sun.star.presentation.Shape

üst 92807062
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: animexp.cxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -349,7 +349,7 @@ void XMLAnimationsExporter::prepare( Reference< XShape > xShape ) ...@@ -349,7 +349,7 @@ void XMLAnimationsExporter::prepare( Reference< XShape > xShape )
// check for presentation shape service // check for presentation shape service
{ {
Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY ); 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; return;
} }
...@@ -380,7 +380,7 @@ void XMLAnimationsExporter::collect( Reference< XShape > xShape ) ...@@ -380,7 +380,7 @@ void XMLAnimationsExporter::collect( Reference< XShape > xShape )
// check for presentation shape service // check for presentation shape service
{ {
Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY ); 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; return;
} }
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: animimp.cxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -432,7 +432,7 @@ public: ...@@ -432,7 +432,7 @@ public:
msSoundOn( RTL_CONSTASCII_USTRINGPARAM( "SoundOn" ) ), msSoundOn( RTL_CONSTASCII_USTRINGPARAM( "SoundOn" ) ),
msSpeed( RTL_CONSTASCII_USTRINGPARAM( "Speed" ) ), msSpeed( RTL_CONSTASCII_USTRINGPARAM( "Speed" ) ),
msTextEffect( RTL_CONSTASCII_USTRINGPARAM( "TextEffect" ) ), 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" ) ), msAnimPath( RTL_CONSTASCII_USTRINGPARAM( "AnimationPath" ) ),
msIsAnimation( RTL_CONSTASCII_USTRINGPARAM( "IsAnimation" ) ) msIsAnimation( RTL_CONSTASCII_USTRINGPARAM( "IsAnimation" ) )
{} {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment