summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/tokenuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/unoobj/tokenuno.cxx')
-rw-r--r--sc/source/ui/unoobj/tokenuno.cxx26
1 files changed, 12 insertions, 14 deletions
diff --git a/sc/source/ui/unoobj/tokenuno.cxx b/sc/source/ui/unoobj/tokenuno.cxx
index a684a61991a8..b1800ced542e 100644
--- a/sc/source/ui/unoobj/tokenuno.cxx
+++ b/sc/source/ui/unoobj/tokenuno.cxx
@@ -191,12 +191,11 @@ void SAL_CALL ScFormulaParserObj::setPropertyValue(
uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
- OUString aString(aPropertyName);
- if ( aString == SC_UNO_COMPILEFAP )
+ if ( aPropertyName == SC_UNO_COMPILEFAP )
{
aValue >>= mbCompileFAP;
}
- else if ( aString == SC_UNO_COMPILEENGLISH )
+ else if ( aPropertyName == SC_UNO_COMPILEENGLISH )
{
bool bOldEnglish = mbEnglish;
if (aValue >>= mbEnglish)
@@ -215,15 +214,15 @@ void SAL_CALL ScFormulaParserObj::setPropertyValue(
else
throw lang::IllegalArgumentException();
}
- else if ( aString == SC_UNO_FORMULACONVENTION )
+ else if ( aPropertyName == SC_UNO_FORMULACONVENTION )
{
aValue >>= mnConv;
}
- else if ( aString == SC_UNO_IGNORELEADING )
+ else if ( aPropertyName == SC_UNO_IGNORELEADING )
{
aValue >>= mbIgnoreSpaces;
}
- else if ( aString == SC_UNO_OPCODEMAP )
+ else if ( aPropertyName == SC_UNO_OPCODEMAP )
{
if (aValue >>= maOpCodeMapping)
{
@@ -235,7 +234,7 @@ void SAL_CALL ScFormulaParserObj::setPropertyValue(
else
throw lang::IllegalArgumentException();
}
- else if ( aString == SC_UNO_EXTERNALLINKS )
+ else if ( aPropertyName == SC_UNO_EXTERNALLINKS )
{
if (!(aValue >>= maExternalLinks))
throw lang::IllegalArgumentException();
@@ -250,28 +249,27 @@ uno::Any SAL_CALL ScFormulaParserObj::getPropertyValue( const OUString& aPropert
{
SolarMutexGuard aGuard;
uno::Any aRet;
- OUString aString(aPropertyName);
- if ( aString == SC_UNO_COMPILEFAP )
+ if ( aPropertyName == SC_UNO_COMPILEFAP )
{
aRet <<= mbCompileFAP;
}
- else if ( aString == SC_UNO_COMPILEENGLISH )
+ else if ( aPropertyName == SC_UNO_COMPILEENGLISH )
{
aRet <<= mbEnglish;
}
- else if ( aString == SC_UNO_FORMULACONVENTION )
+ else if ( aPropertyName == SC_UNO_FORMULACONVENTION )
{
aRet <<= mnConv;
}
- else if ( aString == SC_UNO_IGNORELEADING )
+ else if ( aPropertyName == SC_UNO_IGNORELEADING )
{
aRet <<= mbIgnoreSpaces;
}
- else if ( aString == SC_UNO_OPCODEMAP )
+ else if ( aPropertyName == SC_UNO_OPCODEMAP )
{
aRet <<= maOpCodeMapping;
}
- else if ( aString == SC_UNO_EXTERNALLINKS )
+ else if ( aPropertyName == SC_UNO_EXTERNALLINKS )
{
aRet <<= maExternalLinks;
}