diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-29 20:53:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-30 08:25:43 +0100 |
commit | 3bf767b1312cd691d9f7d59f661f43c60998c728 (patch) | |
tree | 489fedc4a62d45312fb328d371461b71b8399ac6 /chart2/source/view/inc/VDiagram.hxx | |
parent | 282d9c0e1561f533090e0872be2cda28cf919397 (diff) |
use concrete types in chart2, SvxShapeRect
Change-Id: Ibd537ed709be237e00715057c162dd9197759373
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127722
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/view/inc/VDiagram.hxx')
-rw-r--r-- | chart2/source/view/inc/VDiagram.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chart2/source/view/inc/VDiagram.hxx b/chart2/source/view/inc/VDiagram.hxx index ee7aea46b168..757cc1ec61cf 100644 --- a/chart2/source/view/inc/VDiagram.hxx +++ b/chart2/source/view/inc/VDiagram.hxx @@ -23,6 +23,7 @@ #include <com/sun/star/drawing/Direction3D.hpp> #include <com/sun/star/awt/Size.hpp> #include <com/sun/star/awt/Point.hpp> +#include <svx/unoshape.hxx> namespace com::sun::star::beans { class XPropertySet; } namespace com::sun::star::chart2 { class XDiagram; } @@ -93,7 +94,7 @@ private: //members css::uno::Reference< css::drawing::XShape > m_xOuterGroupShape; // this is an additional inner shape that represents the coordinate region - that is - where to place data points css::uno::Reference< css::drawing::XShape > m_xCoordinateRegionShape; - css::uno::Reference< css::drawing::XShape > m_xWall2D; + rtl::Reference<SvxShapeRect> m_xWall2D; sal_Int32 m_nDimensionCount; css::uno::Reference< css::chart2::XDiagram > m_xDiagram; |