diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-01-23 17:54:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-01-23 20:21:21 +0100 |
commit | d5e1fee5af79b462cb0dd9b18ebc0604b6d3ea9c (patch) | |
tree | 605ecda2cb2a892033d7c7af65f88d0c16325a18 /chart2/source/inc/BaseCoordinateSystem.hxx | |
parent | ea6cbf9e42c772e0cb8814142dc8a0eeae14e2fa (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/inc/BaseCoordinateSystem.hxx')
-rw-r--r-- | chart2/source/inc/BaseCoordinateSystem.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
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: |