[Libreoffice-commits] .: oox/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Oct 3 02:06:24 PDT 2012
oox/source/export/drawingml.cxx | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
New commits:
commit fdb42c397f1d15d05a74492a233df72d832cab1c
Author: Noel Power <noel.power at suse.com>
Date: Wed Oct 3 10:04:29 2012 +0100
fix for fdo#55565 regression, failure to export vertical text in shape
Change-Id: If3d6413b1fb9e02dc26f930634f84712d7d08ca3
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index ce9ff77..db61ef9 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1241,6 +1241,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 );
More information about the Libreoffice-commits
mailing list