diff options
-rw-r--r-- | include/oox/drawingml/fillproperties.hxx | 2 | ||||
-rw-r--r-- | oox/source/drawingml/fillproperties.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/drawingml/fillproperties.hxx b/include/oox/drawingml/fillproperties.hxx index dcf3afbfd230..550fd825176b 100644 --- a/include/oox/drawingml/fillproperties.hxx +++ b/include/oox/drawingml/fillproperties.hxx @@ -86,7 +86,7 @@ struct ArtisticEffectProperties static OUString getEffectString( sal_Int32 nToken ); /** Translate effect strings to tokens. */ - static sal_Int32 getEffectToken( OUString sName ); + static sal_Int32 getEffectToken( const OUString& sName ); }; struct BlipFillProperties diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx index 96770425b047..7abd50089d46 100644 --- a/oox/source/drawingml/fillproperties.cxx +++ b/oox/source/drawingml/fillproperties.cxx @@ -701,7 +701,7 @@ OUString ArtisticEffectProperties::getEffectString( sal_Int32 nToken ) return OUString(); } -sal_Int32 ArtisticEffectProperties::getEffectToken( OUString sName ) +sal_Int32 ArtisticEffectProperties::getEffectToken( const OUString& sName ) { // effects if( sName == "artisticBlur" ) |