Kaydet (Commit) e3e12b1d authored tarafından Muthu Subramanian's avatar Muthu Subramanian

n#862510: Fix text rotation.

Fix breaks document in n#783433 - the one there is
damaged - resaving it using mso 2010 should fix the problem there.

Change-Id: Ib2ee7ab20489d716dc189ac6810d705763a16476
üst ddecc215
...@@ -46,7 +46,8 @@ Transform2DContext::Transform2DContext( ContextHandler2Helper& rParent, const At ...@@ -46,7 +46,8 @@ Transform2DContext::Transform2DContext( ContextHandler2Helper& rParent, const At
} }
else else
{ {
mrShape.getTextBody()->getTextProperties().moRotation = rAttribs.getInteger( XML_rot ); if( rAttribs.hasAttribute( XML_rot ) )
mrShape.getTextBody()->getTextProperties().moRotation = -rAttribs.getInteger( XML_rot ).get();
} }
} }
......
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