diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-17 10:36:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-17 10:36:01 +0000 |
commit | 255c380ead386f0eef6454021b2fa203cb182e89 (patch) | |
tree | b51c0e745e4a9d1117af3b136f64076b4d998430 /unotools | |
parent | 1984fef61eea7b06c6a91f5d46a1a8815d286ec1 (diff) |
equalsAsciiL faster than equalsAscii
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/moduleoptions.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/unotools/source/config/moduleoptions.cxx b/unotools/source/config/moduleoptions.cxx index 396f5cedf2b8..5a325f45edf8 100644 --- a/unotools/source/config/moduleoptions.cxx +++ b/unotools/source/config/moduleoptions.cxx @@ -1402,25 +1402,25 @@ sal_uInt32 SvtModuleOptions::GetFeatures() const -----------------------------------------------*/ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByShortName(const ::rtl::OUString& sName) { - if (sName.equalsAscii("swriter")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("swriter"))) return E_WRITER; - if (sName.equalsIgnoreAsciiCaseAscii("swriter/Web")) // sometimes they are registerd for swriter/web :-( + if (sName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("swriter/Web"))) // sometimes they are registerd for swriter/web :-( return E_WRITERWEB; - if (sName.equalsIgnoreAsciiCaseAscii("swriter/GlobalDocument")) // sometimes they are registerd for swriter/globaldocument :-( + if (sName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("swriter/GlobalDocument"))) // sometimes they are registerd for swriter/globaldocument :-( return E_WRITERGLOBAL; - if (sName.equalsAscii("scalc")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("scalc"))) return E_CALC; - if (sName.equalsAscii("sdraw")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("sdraw"))) return E_DRAW; - if (sName.equalsAscii("simpress")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("simpress"))) return E_IMPRESS; - if (sName.equalsAscii("schart")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("schart"))) return E_CHART; - if (sName.equalsAscii("smath")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("smath"))) return E_MATH; - if (sName.equalsAscii("sbasic")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("sbasic"))) return E_BASIC; - if (sName.equalsAscii("sdatabase")) + if (sName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("sdatabase"))) return E_DATABASE; return E_UNKNOWN_FACTORY; |