diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-18 11:45:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-21 10:56:13 +0200 |
commit | 855b30cf7065758ace0a55071d80789b7b93b552 (patch) | |
tree | e16d7cadab65a1ed0e149aa02d2bd5649e42f703 /chart2 | |
parent | 06845c14a17146b0ec50dd3704b6af9ee13927bc (diff) |
loplugin:deadvirtual unused param in ItemUpdateReceiverInterface
Change-Id: I3db5a456a259a97dc9bdf6be0d478177bac05215
Reviewed-on: https://gerrit.libreoffice.org/81186
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
6 files changed, 6 insertions, 12 deletions
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( |