diff options
author | Gülşah Köse <gulsah.kose@collabora.com> | 2019-10-03 08:37:00 +0300 |
---|---|---|
committer | Gülşah Köse <gulsah.kose@collabora.com> | 2019-10-16 10:44:00 +0200 |
commit | c50e44b270bc3048ff9c1a000c3afed1dab9e0bf (patch) | |
tree | d152dc897d7a54e0e01a1b594b1830f9a45f1e19 /oox/inc/drawingml/customshapeproperties.hxx | |
parent | e1b08d46d1861bfca88af5d8c7137419bcc131aa (diff) |
tdf#126060 Handle text camera z rotation while pptx import.
Change-Id: Ifa4589fb50affc4c5ffb52288db8533c98ec6dd9
Reviewed-on: https://gerrit.libreoffice.org/80587
Tested-by: Jenkins
Reviewed-by: Gülşah Köse <gulsah.kose@collabora.com>
Diffstat (limited to 'oox/inc/drawingml/customshapeproperties.hxx')
-rw-r--r-- | oox/inc/drawingml/customshapeproperties.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/inc/drawingml/customshapeproperties.hxx b/oox/inc/drawingml/customshapeproperties.hxx index 19ec66f624ce..1dc0270614e0 100644 --- a/oox/inc/drawingml/customshapeproperties.hxx +++ b/oox/inc/drawingml/customshapeproperties.hxx @@ -118,6 +118,7 @@ public: void setMirroredX( bool bMirroredX ) { mbMirroredX = bMirroredX; }; void setMirroredY( bool bMirroredY ) { mbMirroredY = bMirroredY; }; void setTextRotateAngle( sal_Int32 nAngle ) { mnTextRotateAngle = nAngle; }; + void setTextCameraZRotateAngle( sal_Int32 nAngle ) { mnTextCameraZRotateAngle = nAngle; }; static sal_Int32 SetCustomShapeGuideValue( std::vector< CustomShapeGuide >& rGuideList, const CustomShapeGuide& rGuide ); static sal_Int32 GetCustomShapeGuideValue( const std::vector< CustomShapeGuide >& rGuideList, const OUString& rFormulaName ); @@ -140,6 +141,7 @@ private: bool mbMirroredX; bool mbMirroredY; sal_Int32 mnTextRotateAngle; + sal_Int32 mnTextCameraZRotateAngle; typedef std::unordered_map< sal_Int32, PropertyMap > PresetDataMap; |