summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-09-14 00:05:01 +0300
committerTor Lillqvist <tml@collabora.com>2013-09-19 15:50:41 +0300
commit8d0249a128e0823a2ab30f1c7f67f6b1326cffbb (patch)
treec30e8b5f6234ce27fb3e36da9a4fbb6e63e21380 /i18nlangtag
parentd6c72602bdbf34590502aa3dda581ba443100ecb (diff)
WaE: equalsIgnoreAsciiCaseAscii -> equalsIgnoreAsciiCase [loplugin]
rewrite call of rtl::OUString::equalsIgnoreAsciiCaseAscii with string literal argument as call of rtl::OUString::equalsIgnoreAsciiCase [loplugin] Change-Id: Ia4dcbf6f5233a5aa91c609902da0a1037bcc3a48
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index 8399865ad76c..154e70e551c0 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1883,7 +1883,7 @@ LanguageTagImpl::Extraction LanguageTagImpl::simpleExtract( const OUString& rBcp
// Known and handled grandfathered; ugly but effective ...
// Note that nLen must have matched above.
// Strictly not a variant, but so far we treat it as such.
- if (rBcp47.equalsIgnoreAsciiCaseAscii( "en-GB-oed"))
+ if (rBcp47.equalsIgnoreAsciiCase( "en-GB-oed"))
{
rLanguage = "en";
rScript = OUString();