summaryrefslogtreecommitdiff
path: root/editeng/source
diff options
context:
space:
mode:
authornavin patidar <patidar@kacst.edu.sa>2013-03-11 09:06:45 +0300
committerLior Kaplan <kaplanlior@gmail.com>2013-03-14 15:21:04 +0200
commitb6b0e5527cce681fe157b2f091b67a7ae8cf9aa2 (patch)
treea70001e8915d3589e89872e7e64011f2ef4d283c /editeng/source
parent4c13903e61017b3d7869882aac1ec272a2c4474c (diff)
fix fdo#62143: set TEXT_LAYOUT_BIDI_STRONG flag.
Change-Id: I19ed1874ff73c3a8002934fa3456d718e383c5d6 Reviewed-on: https://gerrit.libreoffice.org/2664 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org> (cherry picked from commit 68c3dfc3119a50ee9c9c6d65f4c656637152bbad) Signed-off-by: Lior Kaplan <kaplanlior@gmail.com>
Diffstat (limited to 'editeng/source')
-rw-r--r--editeng/source/outliner/outliner.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx
index 9688e8909c3e..6ddec874ca97 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -984,7 +984,7 @@ void Outliner::PaintBullet( sal_uInt16 nPara, const Point& rStartPos,
sal_uLong nLayoutMode = pOutDev->GetLayoutMode();
nLayoutMode &= ~(TEXT_LAYOUT_BIDI_RTL|TEXT_LAYOUT_COMPLEX_DISABLED|TEXT_LAYOUT_BIDI_STRONG);
if ( bRightToLeftPara )
- nLayoutMode |= TEXT_LAYOUT_BIDI_RTL | TEXT_LAYOUT_TEXTORIGIN_LEFT;
+ nLayoutMode |= TEXT_LAYOUT_BIDI_RTL | TEXT_LAYOUT_TEXTORIGIN_LEFT | TEXT_LAYOUT_BIDI_STRONG;
pOutDev->SetLayoutMode( nLayoutMode );
if(bStrippingPortions)