diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-06-18 15:16:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-06-18 22:18:02 +0200 |
commit | 5fb7f66d240fec32a4751d331a215307ad994cbb (patch) | |
tree | 84ac00be01681b23688eb3fc95c101a515d177b4 /l10ntools | |
parent | 90f872b4c9eac6ea1955876ff292a962f95577dd (diff) |
Simplify a OUString construction
Change-Id: Ie7bf010f6864db19b7cc64761b34e203ce70784d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117458
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/merge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx index 02bfd9a74bbc..004cffacc494 100644 --- a/l10ntools/source/merge.cxx +++ b/l10ntools/source/merge.cxx @@ -94,7 +94,7 @@ namespace { //DOUBLE VERTICAL LINE instead of || because the translations make their //way into action_names under gtk3 where || is illegal - return OUStringToOString(u"\x2016", RTL_TEXTENCODING_UTF8); + return u8"\u2016"; } } |