summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
authorsushil_shinde <sushil.shinde@synerzip.com>2014-07-10 11:46:22 +0530
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-07-17 07:54:35 +0000
commit1bdd6d2129eecda564478d494fd46d14a54b6ac5 (patch)
tree8da6476cd927645c6dfddf2151b238636361c76d /include/oox
parentb50953df9829ef13601b98ae217102b123affcd0 (diff)
fdo#80894 : Rotation value for textframe was missing after RT.
- Rotation property is not available for TextFrame in LO. - Hence grabbaged this value. - Roundtripped rotation value by converting it properly for both dml and vml textbox. - Added UT for it. Change-Id: Ia040d55dc2ea79500df76877ba44a02971c872a8 Reviewed-on: https://gerrit.libreoffice.org/10190 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/export/drawingml.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 6f64fcf5ac8f..bf46326b3ca4 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -29,10 +29,10 @@
#include <tools/poly.hxx>
#include <filter/msfilter/escherex.hxx>
#include "oox/drawingml/drawingmltypes.hxx"
-#ifndef PPTX_EXPORT_ROTATE_CLOCKWISIFY
+#ifndef OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY
// Our rotation is counter-clockwise and is in 100ths of a degree.
// drawingML rotation is clockwise and is in 60000ths of a degree.
-#define PPTX_EXPORT_ROTATE_CLOCKWISIFY(input) ((21600000-input*600)%21600000)
+#define OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY(input) ((21600000-input*600)%21600000)
#endif
class Graphic;