summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2018-10-27 13:45:15 +0200
committerAndras Timar <andras.timar@collabora.com>2018-10-27 17:33:18 +0200
commit129d1fe9fdb448a764f6c181705a61d4db321904 (patch)
tree0924a892de40dcb1257ea31d17db1816cef4c88e
parent2b9fa72fdc683d4357ee47b98c7dd4cd2f4c02a2 (diff)
tdf#80646 insert LTR mark after label
Change-Id: Idb60b43bd04ab9e7c75c144ebf2b1626e13d34b6 Reviewed-on: https://gerrit.libreoffice.org/62418 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r--cui/source/options/optjava.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx
index 47f6625ee9fa..06ee40e29f55 100644
--- a/cui/source/options/optjava.cxx
+++ b/cui/source/options/optjava.cxx
@@ -228,6 +228,8 @@ IMPL_LINK_NOARG(SvxJavaOptionsPage, SelectHdl_Impl, SvTreeListBox*, void)
OUString* pLocation = static_cast< OUString* >( pEntry->GetUserData() );
DBG_ASSERT( pLocation, "invalid location string" );
OUString sInfo = m_sInstallText;
+ // tdf#80646 insert LTR mark after label
+ sInfo += OUStringLiteral1(0x200E);
if ( pLocation )
sInfo += *pLocation;
m_pJavaPathText->SetText(sInfo);