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-14 00:05:01 +0300
commiteb35c23d03b5171736ea73de756bbc11e40c2a73 (patch)
treea409503fc390e1672a7556da43bca4a3bbf58559 /i18nlangtag
parentccedc240de2ed9f8fd6ea4ed4ae5f7def153130e (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 cfbb6ec9c728..5987ffee9831 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1524,7 +1524,7 @@ LanguageTag::Extraction LanguageTag::simpleExtract( const OUString& rBcp47,
// 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();