diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-08-13 10:26:00 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-08-13 11:02:19 +0200 |
commit | 774b6899172b2f803898655103d6653ef2261cfd (patch) | |
tree | 7e86ef4a9f77d1f897ff669bd576ef0781a419c0 /oox | |
parent | 48a1b767b183acdc703cd7e5a4c6d492da237daa (diff) |
RTF import: handle rotation on groupshapes
Change-Id: I7892224a118b6566e26b3ffc472c88f3c7f58620
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/vml/vmlshape.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx index e1df8e6ac520..0c88d3fa372c 100644 --- a/oox/source/vml/vmlshape.cxx +++ b/oox/source/vml/vmlshape.cxx @@ -493,7 +493,7 @@ void lcl_SetAnchorType(PropertySet& rPropSet, const ShapeTypeModel& rTypeModel) void lcl_SetRotation(PropertySet& rPropSet, const sal_Int32 nRotation) { // See DffPropertyReader::Fix16ToAngle(): in VML, positive rotation angles are clockwise, we have them as counter-clockwise. - // Additionally, VML type is 0..360, our is 0.36000. + // Additionally, VML type is 0..360, our is 0..36000. rPropSet.setAnyProperty(PROP_RotateAngle, makeAny(sal_Int32(NormAngle360(nRotation * -100)))); } |