summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/funcuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/unoobj/funcuno.cxx')
-rw-r--r--sc/source/ui/unoobj/funcuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/funcuno.cxx b/sc/source/ui/unoobj/funcuno.cxx
index f162a756551c..13c63979008b 100644
--- a/sc/source/ui/unoobj/funcuno.cxx
+++ b/sc/source/ui/unoobj/funcuno.cxx
@@ -313,7 +313,7 @@ void SAL_CALL ScFunctionAccess::setPropertyValue(
{
SolarMutexGuard aGuard;
- if( aPropertyName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsArrayFunction" ) ) )
+ if ( aPropertyName == "IsArrayFunction" )
{
if( !(aValue >>= mbArray) )
throw lang::IllegalArgumentException();
@@ -337,7 +337,7 @@ uno::Any SAL_CALL ScFunctionAccess::getPropertyValue( const rtl::OUString& aProp
{
SolarMutexGuard aGuard;
- if( aPropertyName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsArrayFunction" ) ) )
+ if ( aPropertyName == "IsArrayFunction" )
return uno::Any( mbArray );
if ( !pOptions )