diff options
author | Noel Power <noel.power@suse.com> | 2012-10-03 10:04:29 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-10-04 10:15:11 +0100 |
commit | 02162cb7d019d2ab80d0d907a9bde212114ba89a (patch) | |
tree | c4f45e5219bc1a7f0b3b9b9856eff193cbb18c32 | |
parent | 9e553fcf085149dcaec15541278d910e59b04676 (diff) |
fix for fdo#55565 regression, failure to export vertical text in shape
Change-Id: If3d6413b1fb9e02dc26f930634f84712d7d08ca3
Signed-off-by: Michael Meeks <michael.meeks@suse.com>
-rw-r--r-- | oox/source/export/drawingml.cxx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index f2c28e985655..bc0e9879332f 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1245,6 +1245,27 @@ void DrawingML::WriteText( Reference< XInterface > rXIface ) } } + if ( GETA( CustomShapeGeometry ) ) + { + Sequence< PropertyValue > aProps; + if ( mAny >>= aProps ) + { + for ( sal_Int32 i = 0, nElems = aProps.getLength(); i < nElems; ++i ) + { + sal_Int32 nTextRotateAngle = 0; + if ( aProps[ i ].Name.equals( "TextPreRotateAngle" ) && ( aProps[ i ].Value >>= nTextRotateAngle ) ) + { + if ( nTextRotateAngle == -90 ) + { + sWritingMode = "vert"; + bVertical = sal_True; + } + break; + } + } + } + } + TextHorizontalAdjust eHorizontalAlignment( TextHorizontalAdjust_CENTER ); bool bHorizontalCenter = false; GET( eHorizontalAlignment, TextHorizontalAdjust ); |