From 855b30cf7065758ace0a55071d80789b7b93b552 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 18 Oct 2019 11:45:12 +0200 Subject: loplugin:deadvirtual unused param in ItemUpdateReceiverInterface Change-Id: I3db5a456a259a97dc9bdf6be0d478177bac05215 Reviewed-on: https://gerrit.libreoffice.org/81186 Tested-by: Jenkins Reviewed-by: Noel Grandin --- chart2/source/controller/sidebar/ChartAxisPanel.cxx | 3 +-- chart2/source/controller/sidebar/ChartAxisPanel.hxx | 3 +-- chart2/source/controller/sidebar/ChartErrorBarPanel.cxx | 3 +-- chart2/source/controller/sidebar/ChartErrorBarPanel.hxx | 3 +-- chart2/source/controller/sidebar/ChartSeriesPanel.cxx | 3 +-- chart2/source/controller/sidebar/ChartSeriesPanel.hxx | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) (limited to 'chart2/source/controller') diff --git a/chart2/source/controller/sidebar/ChartAxisPanel.cxx b/chart2/source/controller/sidebar/ChartAxisPanel.cxx index 384980e94645..419c287d3eeb 100644 --- a/chart2/source/controller/sidebar/ChartAxisPanel.cxx +++ b/chart2/source/controller/sidebar/ChartAxisPanel.cxx @@ -312,8 +312,7 @@ void ChartAxisPanel::HandleContextChange( void ChartAxisPanel::NotifyItemUpdate( sal_uInt16 /*nSID*/, SfxItemState /*eState*/, - const SfxPoolItem* /*pState*/, - const bool ) + const SfxPoolItem* /*pState*/ ) { } diff --git a/chart2/source/controller/sidebar/ChartAxisPanel.hxx b/chart2/source/controller/sidebar/ChartAxisPanel.hxx index f72b12152a7e..0c9bd74ab182 100644 --- a/chart2/source/controller/sidebar/ChartAxisPanel.hxx +++ b/chart2/source/controller/sidebar/ChartAxisPanel.hxx @@ -55,8 +55,7 @@ public: virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, - const SfxPoolItem* pState, - const bool bIsEnabled) override; + const SfxPoolItem* pState) override; // constructor/destructor ChartAxisPanel( diff --git a/chart2/source/controller/sidebar/ChartErrorBarPanel.cxx b/chart2/source/controller/sidebar/ChartErrorBarPanel.cxx index f6199cecef00..4ef3c19228dd 100644 --- a/chart2/source/controller/sidebar/ChartErrorBarPanel.cxx +++ b/chart2/source/controller/sidebar/ChartErrorBarPanel.cxx @@ -374,8 +374,7 @@ void ChartErrorBarPanel::HandleContextChange( void ChartErrorBarPanel::NotifyItemUpdate( sal_uInt16 /*nSID*/, SfxItemState /*eState*/, - const SfxPoolItem* /*pState*/, - const bool ) + const SfxPoolItem* /*pState*/ ) { } diff --git a/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx b/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx index f4dec42c5521..c6e20976f9ae 100644 --- a/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx +++ b/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx @@ -51,8 +51,7 @@ public: virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, - const SfxPoolItem* pState, - const bool bIsEnabled) override; + const SfxPoolItem* pState) override; // constructor/destructor ChartErrorBarPanel( diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx index e0d28fa3e7bc..d2ce4e198fcc 100644 --- a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx +++ b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx @@ -406,8 +406,7 @@ void ChartSeriesPanel::HandleContextChange( void ChartSeriesPanel::NotifyItemUpdate( sal_uInt16 /*nSID*/, SfxItemState /*eState*/, - const SfxPoolItem* /*pState*/, - const bool ) + const SfxPoolItem* /*pState*/ ) { } diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx index e33fec10cf3f..83dcbffd70ae 100644 --- a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx +++ b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx @@ -61,8 +61,7 @@ public: virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, - const SfxPoolItem* pState, - const bool bIsEnabled) override; + const SfxPoolItem* pState) override; // constructor/destructor ChartSeriesPanel( -- cgit