diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-19 13:24:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-19 15:36:52 +0200 |
commit | ac2c1fb821b45f2382a5104b4d98dc08061ae938 (patch) | |
tree | bcc57c5cf1a9853fffd9792205cbe05aa07a1863 /cui/source/options | |
parent | 4444d5dbe7dba90ccfb0a9eeed36be0abfdd1854 (diff) |
Replace some uses of OUStringChar with string literals
Change-Id: I763f9a3f57efcd47643ca4651e2454e95c6921c9
Reviewed-on: https://gerrit.libreoffice.org/81127
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cui/source/options')
-rw-r--r-- | cui/source/options/optjava.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index 1073b71b23b6..947d7e25e12c 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -153,10 +153,8 @@ IMPL_LINK_NOARG(SvxJavaOptionsPage, SelectHdl_Impl, weld::TreeView&, void) { // set installation directory info OUString sLocation = m_xJavaList->get_selected_id(); - OUString sInfo = m_sInstallText; // tdf#80646 insert LTR mark after label - sInfo += OUStringChar(0x200E); - sInfo += sLocation; + OUString sInfo = m_sInstallText + u"\u200E" + sLocation; m_xJavaPathText->set_label(sInfo); } |