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 /include | |
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 'include')
-rw-r--r-- | include/sfx2/sidebar/ControllerItem.hxx | 3 | ||||
-rw-r--r-- | include/svx/sidebar/AreaPropertyPanelBase.hxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/sfx2/sidebar/ControllerItem.hxx b/include/sfx2/sidebar/ControllerItem.hxx index 619956b96695..521be277e45f 100644 --- a/include/sfx2/sidebar/ControllerItem.hxx +++ b/include/sfx2/sidebar/ControllerItem.hxx @@ -44,8 +44,7 @@ public: virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, - const SfxPoolItem* pState, - const bool bIsEnabled) = 0; + const SfxPoolItem* pState) = 0; virtual ~ItemUpdateReceiverInterface(); }; diff --git a/include/svx/sidebar/AreaPropertyPanelBase.hxx b/include/svx/sidebar/AreaPropertyPanelBase.hxx index 0f568600563d..abe5a603514c 100644 --- a/include/svx/sidebar/AreaPropertyPanelBase.hxx +++ b/include/svx/sidebar/AreaPropertyPanelBase.hxx @@ -65,8 +65,7 @@ public: virtual void NotifyItemUpdate( const sal_uInt16 nSId, const SfxItemState eState, - const SfxPoolItem* pState, - const bool bIsEnabled) override; + const SfxPoolItem* pState) override; const static sal_Int32 DEFAULT_CENTERX; const static sal_Int32 DEFAULT_CENTERY; |