summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/addinhelpid.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-19 23:12:18 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-19 23:12:18 +0100
commitcb2edbe3e44f87bc14291a75f9029f9c1ff294b9 (patch)
treeda06732a087ea468453bd906ccfeea0a20105a55 /sc/source/core/tool/addinhelpid.cxx
parent1d0d4809d04ac21077f74c4058490a3719a95284 (diff)
Replace suitable equalsAscii calls with equalsAsciiL.
Diffstat (limited to 'sc/source/core/tool/addinhelpid.cxx')
-rw-r--r--sc/source/core/tool/addinhelpid.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/addinhelpid.cxx b/sc/source/core/tool/addinhelpid.cxx
index 9ed593f58cde..8f347a9dea0b 100644
--- a/sc/source/core/tool/addinhelpid.cxx
+++ b/sc/source/core/tool/addinhelpid.cxx
@@ -171,12 +171,12 @@ void ScUnoAddInHelpIdGenerator::SetServiceName( const ::rtl::OUString& rServiceN
pCurrHelpIds = NULL;
sal_uInt32 nSize = 0;
- if( rServiceName.equalsAscii( "com.sun.star.sheet.addin.Analysis" ) )
+ if( rServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.sheet.addin.Analysis" ) ) )
{
pCurrHelpIds = pAnalysisHelpIds;
nSize = sizeof( pAnalysisHelpIds );
}
- else if( rServiceName.equalsAscii( "com.sun.star.sheet.addin.DateFunctions" ) )
+ else if( rServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.sheet.addin.DateFunctions" ) ) )
{
pCurrHelpIds = pDateFuncHelpIds;
nSize = sizeof( pDateFuncHelpIds );