From 07d85c44998f42545175ee77c192b901b52a30ca Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 24 Jun 2015 12:06:34 +0200 Subject: remove SFX_NOTIFY macro it has not served any purpose since we switched to using normal C++ RTTI for the SfxHint objects Change-Id: Ic81353bcb7863ce892eb75296248ca14d8fd6c86 --- basctl/source/basicide/basidesh.cxx | 3 +-- basctl/source/inc/basidesh.hxx | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'basctl') diff --git a/basctl/source/basicide/basidesh.cxx b/basctl/source/basicide/basidesh.cxx index 2501cdb55159..1ac759b83e5a 100644 --- a/basctl/source/basicide/basidesh.cxx +++ b/basctl/source/basicide/basidesh.cxx @@ -523,8 +523,7 @@ void Shell::ArrangeTabBar() -void Shell::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId&, - const SfxHint& rHint, const TypeId& ) +void Shell::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) { if (GetShell()) { diff --git a/basctl/source/inc/basidesh.hxx b/basctl/source/inc/basidesh.hxx index a3794b91ca48..8c45020cbca2 100644 --- a/basctl/source/inc/basidesh.hxx +++ b/basctl/source/inc/basidesh.hxx @@ -125,8 +125,7 @@ private: VclPtr ShowActiveModuleWindow( StarBASIC* pBasic ); - virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType, - const SfxHint& rHint, const TypeId& rHintType ) SAL_OVERRIDE; + virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE; virtual void Activate(bool bMDI) SAL_OVERRIDE; virtual void Deactivate(bool bMDI) SAL_OVERRIDE; -- cgit