[Libreoffice-commits] core.git: cui/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Oct 27 15:33:39 UTC 2018
cui/source/options/optjava.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 129d1fe9fdb448a764f6c181705a61d4db321904
Author: Andras Timar <andras.timar at collabora.com>
AuthorDate: Sat Oct 27 13:45:15 2018 +0200
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Sat Oct 27 17:33:18 2018 +0200
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 at collabora.com>
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);
More information about the Libreoffice-commits
mailing list