Kaydet (Commit) b7e0d49d authored tarafından Jan Holesovsky's avatar Jan Holesovsky

Improve readability.

Change-Id: I7527acd4b99b3b2a911532adb85b2a082c6569b7
üst d5676711
......@@ -5149,10 +5149,12 @@ void DocxAttributeOutput::ParaAdjust( const SvxAdjustItem& rAdjust )
{
case SVX_ADJUST_LEFT:
if ( bEcma )
{
if ( bRtl )
pAdjustString = "right";
else
pAdjustString = "left";
}
else if ( bRtl )
pAdjustString = "end";
else
......@@ -5160,10 +5162,12 @@ void DocxAttributeOutput::ParaAdjust( const SvxAdjustItem& rAdjust )
break;
case SVX_ADJUST_RIGHT:
if ( bEcma )
{
if ( bRtl )
pAdjustString = "left";
else
pAdjustString = "right";
}
else if ( bRtl )
pAdjustString = "start";
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment