summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2013-06-22 11:23:46 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2013-06-22 11:23:53 +0200
commit4e6b13fb23ea83013407dbd3281e6ebeba699544 (patch)
treebc899818b56355aa213c4f333ef546962e31d00e /vcl
parentFix indentation (diff)
downloadcore-4e6b13fb23ea83013407dbd3281e6ebeba699544.tar.gz
core-4e6b13fb23ea83013407dbd3281e6ebeba699544.zip
Fix indentation
Change-Id: I8e1621a160ea78b18a5b366f61938fa4dadd72e4
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/sallayout.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx
index 4df3123db038..314de78a3e1f 100644
--- a/vcl/source/gdi/sallayout.cxx
+++ b/vcl/source/gdi/sallayout.cxx
@@ -350,8 +350,7 @@ bool ImplLayoutRuns::AddPos( int nCharPos, bool bRTL )
{
int nRunPos0 = maRuns[ nIndex-2 ];
int nRunPos1 = maRuns[ nIndex-1 ];
- if( ((nCharPos + bRTL) == nRunPos1)
- && ((nRunPos0 > nRunPos1) == bRTL) )
+ if( ((nCharPos + bRTL) == nRunPos1) && ((nRunPos0 > nRunPos1) == bRTL) )
{
// extend current run by new charpos
maRuns[ nIndex-1 ] = nCharPos + !bRTL;