diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-28 15:01:39 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-28 15:31:05 +0100 |
commit | efcc8ddd213e7f7a341526bdcffcee75d8fef77f (patch) | |
tree | 0427612972c20ce8756e216f8cf040e162625521 /oox/source/shape/ShapeContextHandler.hxx | |
parent | 51a423cd75240e1e70165be8c0e5f1f09e8b68b9 (diff) |
fdo#69636 DOCX drawingML shape import: handle vert=vert270 prop for sw frames
Change-Id: I95b4cfa0494c8115ebf23c76f4712b48d17bd463
Diffstat (limited to 'oox/source/shape/ShapeContextHandler.hxx')
-rw-r--r-- | oox/source/shape/ShapeContextHandler.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/oox/source/shape/ShapeContextHandler.hxx b/oox/source/shape/ShapeContextHandler.hxx index 7a9b93c0f679..bf27e167a8ea 100644 --- a/oox/source/shape/ShapeContextHandler.hxx +++ b/oox/source/shape/ShapeContextHandler.hxx @@ -155,6 +155,7 @@ private: css::uno::Reference<XFastContextHandler> mxDiagramShapeContext; css::uno::Reference<XFastContextHandler> mxLockedCanvasContext; css::uno::Reference<XFastContextHandler> mxWpsContext; + css::uno::Reference<css::drawing::XShape> mxSavedShape; css::uno::Reference<XFastContextHandler> mxWpgContext; css::uno::Reference<XFastContextHandler> mxChartShapeContext; @@ -169,9 +170,9 @@ private: css::uno::Reference<XFastContextHandler> getDrawingShapeContext(); css::uno::Reference<XFastContextHandler> getDiagramShapeContext(); css::uno::Reference<XFastContextHandler> getLockedCanvasContext(sal_Int32 nElement); - css::uno::Reference<XFastContextHandler> getWpsContext(sal_Int32 nElement); + css::uno::Reference<XFastContextHandler> getWpsContext(sal_Int32 nStartElement, sal_Int32 nElement); css::uno::Reference<XFastContextHandler> getWpgContext(sal_Int32 nElement); - css::uno::Reference<XFastContextHandler> getContextHandler(); + css::uno::Reference<XFastContextHandler> getContextHandler(sal_Int32 nElement = 0); }; }} |