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

implement shape lineWidth

Change-Id: I5a6fd4c8fcb2641cdceabcd58c3fa0ccae059d25
üst 0ee9dc2f
......@@ -160,6 +160,12 @@ void RTFSdrImport::resolve(RTFShape& rShape)
aAny <<= i->second.toInt32()*100/65536;
xPropertySet->setPropertyValue("RotateAngle", aAny);
}
else if (i->first == "lineWidth" && xPropertySet.is())
{
aAny <<= i->second.toInt32()/360;
xPropertySet->setPropertyValue("LineWidth", 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