diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-23 00:40:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-23 09:08:07 +0100 |
commit | fe64e6fc81e9c1f75c065dc6109e17d3076aabef (patch) | |
tree | 19591a5f736b4e025ee12bd3ad625106e4650ffd /tools/source/rc | |
parent | 124a30f47b1fea9921f5b901f22bacc536a53ce0 (diff) |
use OString::equalsL
Diffstat (limited to 'tools/source/rc')
-rw-r--r-- | tools/source/rc/isofallback.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/rc/isofallback.cxx b/tools/source/rc/isofallback.cxx index e2a82a865b94..2fae5cfc9eee 100644 --- a/tools/source/rc/isofallback.cxx +++ b/tools/source/rc/isofallback.cxx @@ -42,7 +42,7 @@ bool GetIsoFallback(rtl::OString& rLanguage) sal_Int32 nSepPos = rLanguage.indexOf('-'); if (nSepPos == -1) { - if (rLanguage == rtl::OString(RTL_CONSTASCII_STRINGPARAM("en"))) + if (rLanguage.equalsL(RTL_CONSTASCII_STRINGPARAM("en"))) { // en -> "" rLanguage = rtl::OString(); |