From bbe6bc271ac560991ac41b5beeb7ccc139168f1e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 18 Oct 2019 11:48:24 +0200 Subject: loplugin:virtualdead unused param in SfxStatusListener::StateChanged Change-Id: Ic467490ddd1b0762bfa61878c4026afb53b02743 Reviewed-on: https://gerrit.libreoffice.org/81212 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svx/source/tbxctrls/tbcontrl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svx') diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx index 510d695ffba0..b3b6b51db395 100644 --- a/svx/source/tbxctrls/tbcontrl.cxx +++ b/svx/source/tbxctrls/tbcontrl.cxx @@ -653,7 +653,7 @@ class SfxStyleControllerItem_Impl : public SfxStatusListener SvxStyleToolBoxControl& rTbxCtl ); protected: - virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) override; + virtual void StateChanged( SfxItemState eState, const SfxPoolItem* pState ) override; private: SvxStyleToolBoxControl& rControl; @@ -2741,7 +2741,7 @@ SfxStyleControllerItem_Impl::SfxStyleControllerItem_Impl( } void SfxStyleControllerItem_Impl::StateChanged( - sal_uInt16, SfxItemState eState, const SfxPoolItem* pState ) + SfxItemState eState, const SfxPoolItem* pState ) { switch ( GetId() ) { -- cgit