diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-24 12:06:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-24 12:06:34 +0200 |
commit | 07d85c44998f42545175ee77c192b901b52a30ca (patch) | |
tree | 81c232567c3170fb79e1032b98d6cd9e8cf2a040 /basctl | |
parent | 1d1c0632d2de3180abaa9782404c0aea1f1b30af (diff) |
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
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basidesh.cxx | 3 | ||||
-rw-r--r-- | basctl/source/inc/basidesh.hxx | 3 |
2 files changed, 2 insertions, 4 deletions
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<ModulWindow> 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; |