From d5e1fee5af79b462cb0dd9b18ebc0604b6d3ea9c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 23 Jan 2022 17:54:35 +0200 Subject: use more concrete types in chart2, BaseCoordinateSystem Change-Id: I780b391ffbff7cb79201eb2895702a7a9a07f89d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128829 Tested-by: Jenkins Reviewed-by: Noel Grandin --- chart2/source/inc/BaseCoordinateSystem.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chart2/source/inc/BaseCoordinateSystem.hxx') diff --git a/chart2/source/inc/BaseCoordinateSystem.hxx b/chart2/source/inc/BaseCoordinateSystem.hxx index 922d4047b02e..2241c8490b83 100644 --- a/chart2/source/inc/BaseCoordinateSystem.hxx +++ b/chart2/source/inc/BaseCoordinateSystem.hxx @@ -88,7 +88,7 @@ public: const css::uno::Reference< css::chart2::XChartType >& aChartType ) override; virtual css::uno::Sequence< css::uno::Reference< css::chart2::XChartType > > SAL_CALL getChartTypes() override; virtual void SAL_CALL setChartTypes( - const css::uno::Sequence< css::uno::Reference< css::chart2::XChartType > >& aChartTypes ) override; + const css::uno::Sequence< css::uno::Reference< css::chart2::XChartType > >& aChartTypes ) final override; // ____ XModifyBroadcaster ____ virtual void SAL_CALL addModifyListener( @@ -96,6 +96,7 @@ public: virtual void SAL_CALL removeModifyListener( const css::uno::Reference< css::util::XModifyListener >& aListener ) override; + void setChartTypes( const std::vector< rtl::Reference< ::chart::ChartType > >& aChartTypes ); const std::vector< rtl::Reference<::chart::ChartType > > & getChartTypes2() const { return m_aChartTypes; } protected: -- cgit