Kaydet (Commit) 0ee9dc2f authored tarafından Pavel Kysilka's avatar Pavel Kysilka Kaydeden (comit) Miklos Vajna

implement shape rotation

Change-Id: Ib7c76768e302556a88ae6d87770c57f31ea8d36b
üst 35210310
......@@ -155,6 +155,11 @@ void RTFSdrImport::resolve(RTFShape& rShape)
aAny <<= uno::makeAny(sal_uInt32(opacity));
xPropertySet->setPropertyValue("FillTransparence", aAny);
}
else if (i->first == "rotation" && xPropertySet.is())
{
aAny <<= i->second.toInt32()*100/65536;
xPropertySet->setPropertyValue("RotateAngle", aAny);
}
else if ( i->first == "pVerticies" )
{
uno::Sequence<drawing::EnhancedCustomShapeParameterPair> aCoordinates;
......
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