diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-10-05 01:50:11 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-19 13:47:33 +0100 |
commit | ee5ef16d352bdcb2eb8fe1f4530b7f5c43bed911 (patch) | |
tree | 8825e9036147ec627a0c434d071d2dfdd16e451f /chart2/source/view/inc/LabelPositionHelper.hxx | |
parent | 5c0a5503b692fa29b167e1b9a317fc77ef1baaf0 (diff) |
make it possible to switch between different ShapeFactories
Change-Id: I49f6b16182c25ead486a15ab86f722902b36933e
Diffstat (limited to 'chart2/source/view/inc/LabelPositionHelper.hxx')
-rw-r--r-- | chart2/source/view/inc/LabelPositionHelper.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/view/inc/LabelPositionHelper.hxx b/chart2/source/view/inc/LabelPositionHelper.hxx index 9e7d901f6a9f..dc4659c0a091 100644 --- a/chart2/source/view/inc/LabelPositionHelper.hxx +++ b/chart2/source/view/inc/LabelPositionHelper.hxx @@ -32,7 +32,7 @@ namespace chart /** */ class PlottingPositionHelper; -class ShapeFactory; +class AbstractShapeFactory; class LabelPositionHelper { @@ -41,7 +41,7 @@ public: PlottingPositionHelper* pPosHelper , sal_Int32 nDimensionCount , const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes >& xLogicTarget - , ShapeFactory* pShapeFactory ); + , AbstractShapeFactory* pShapeFactory ); virtual ~LabelPositionHelper(); ::com::sun::star::awt::Point transformSceneToScreenPosition( @@ -66,7 +66,7 @@ private: //these members are only necessary for transformation from 3D to 2D ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xLogicTarget; - ShapeFactory* m_pShapeFactory; + AbstractShapeFactory* m_pShapeFactory; }; } //namespace chart |