diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-01-22 18:14:51 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-22 18:26:04 +0100 |
commit | 4ceba05995b9fafdc00896e3253f405299ff1066 (patch) | |
tree | 366e7c013cb811dcdaa21c1015be7267b8561e01 /sd | |
parent | ffd2cc342f4ba54feeecbd3d31632131b45886ef (diff) |
oox: kill no longer needed S() macro
Change-Id: If3f1bb787d6debaa63e3bed3a48e44b5e34c27b7
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptbase.hxx | 4 | ||||
-rw-r--r-- | sd/source/filter/eppt/epptso.cxx | 6 | ||||
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 6 | ||||
-rw-r--r-- | sd/source/filter/eppt/text.hxx | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/sd/source/filter/eppt/epptbase.hxx b/sd/source/filter/eppt/epptbase.hxx index cdd493c4190e..20670b7bc683 100644 --- a/sd/source/filter/eppt/epptbase.hxx +++ b/sd/source/filter/eppt/epptbase.hxx @@ -88,9 +88,9 @@ class PropValue ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > mXPropSet; - sal_Bool ImplGetPropertyValue( const String& rString ); + sal_Bool ImplGetPropertyValue( const OUString& rString ); sal_Bool ImplGetPropertyValue( const ::com::sun::star::uno::Reference - < ::com::sun::star::beans::XPropertySet > &, const String& ); + < ::com::sun::star::beans::XPropertySet > &, const OUString& ); public : diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx index c28f4d1e6eae..29862752910a 100644 --- a/sd/source/filter/eppt/epptso.cxx +++ b/sd/source/filter/eppt/epptso.cxx @@ -676,21 +676,21 @@ sal_Bool PropValue::GetPropertyValue( // --------------------------------------------------------------------------------------------- -sal_Bool PropValue::ImplGetPropertyValue( const String& rString ) +sal_Bool PropValue::ImplGetPropertyValue( const OUString& rString ) { return GetPropertyValue( mAny, mXPropSet, rString ); } // --------------------------------------------------------------------------------------------- -sal_Bool PropValue::ImplGetPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & aXPropSet, const String& rString ) +sal_Bool PropValue::ImplGetPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & aXPropSet, const OUString& rString ) { return GetPropertyValue( mAny, aXPropSet, rString ); } // --------------------------------------------------------------------------------------------- -sal_Bool PropStateValue::ImplGetPropertyValue( const String& rString, sal_Bool bGetPropertyState ) +sal_Bool PropStateValue::ImplGetPropertyValue( const OUString& rString, sal_Bool bGetPropertyState ) { ePropState = ::com::sun::star::beans::PropertyState_AMBIGUOUS_VALUE; sal_Bool bRetValue = sal_True; diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 873f1d1f9ce8..3e99a0e80212 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -334,7 +334,7 @@ bool PowerPointExport::exportDocument() throw() DrawingML::ResetCounters(); maShapeMap.clear (); - addRelation( US( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" ), S( "ppt/presentation.xml" ) ); + addRelation( US( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" ), "ppt/presentation.xml" ); mPresentationFS = openFragmentStreamWithSerializer( US( "ppt/presentation.xml" ), US( "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml" ) ); @@ -388,7 +388,7 @@ bool PowerPointExport::exportDocument() throw() void PowerPointExport::ImplWriteBackground( FSHelperPtr pFS, Reference< XPropertySet > rXPropSet ) { FillStyle aFillStyle( FillStyle_NONE ); - if ( ImplGetPropertyValue( rXPropSet, S( "FillStyle" ) ) ) + if ( ImplGetPropertyValue( rXPropSet, "FillStyle" ) ) mAny >>= aFillStyle; if( aFillStyle == FillStyle_NONE || @@ -1810,7 +1810,7 @@ ShapeExport& PowerPointShapeExport::WritePlaceholderShape( Reference< XShape > x WritePresetShape( "rect" ); Reference< XPropertySet > xProps( xShape, UNO_QUERY ); if( xProps.is() ) - WriteBlipFill( xProps, S( "GraphicURL" ) ); + WriteBlipFill( xProps, "GraphicURL" ); mpFS->endElementNS( XML_p, XML_spPr ); WriteTextBox( xShape, XML_p ); diff --git a/sd/source/filter/eppt/text.hxx b/sd/source/filter/eppt/text.hxx index feb291a42f71..48e0980b08ed 100644 --- a/sd/source/filter/eppt/text.hxx +++ b/sd/source/filter/eppt/text.hxx @@ -83,7 +83,7 @@ class PropStateValue : public PropValue ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertyState > mXPropState; - sal_Bool ImplGetPropertyValue( const String& rString, sal_Bool bGetPropertyState = sal_True ); + sal_Bool ImplGetPropertyValue( const OUString& rString, sal_Bool bGetPropertyState = sal_True ); }; |