summaryrefslogtreecommitdiff
path: root/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx')
-rw-r--r--lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
index ddb2e834215c..06e9f4eddff1 100644
--- a/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
+++ b/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx
@@ -90,8 +90,8 @@ OString encodeTextForLanguageTool(const OUString& text)
// different cases are handled differently by the demo; some percent-encode the UTF-8
// representation, like %D0%90 (for cyrillic А); some turn into entities like ! (for
// exclamation mark !); some other to things like \u0027 (for apostrophe ').
- static constexpr auto myCharClass
- = rtl::createUriCharClass("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
+ static constexpr auto myCharClass = rtl::createUriCharClass(
+ u8"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
return OUStringToOString(
rtl::Uri::encode(text, myCharClass.data(), rtl_UriEncodeStrict, RTL_TEXTENCODING_UTF8),
RTL_TEXTENCODING_ASCII_US);