summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-24 12:06:34 +0200
committerNoel Grandin <noel@peralex.com>2015-06-24 12:06:34 +0200
commit07d85c44998f42545175ee77c192b901b52a30ca (patch)
tree81c232567c3170fb79e1032b98d6cd9e8cf2a040 /include/svl
parent1d1c0632d2de3180abaa9782404c0aea1f1b30af (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 'include/svl')
-rw-r--r--include/svl/lstner.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/svl/lstner.hxx b/include/svl/lstner.hxx
index cc1e842c6661..521c1979f9f3 100644
--- a/include/svl/lstner.hxx
+++ b/include/svl/lstner.hxx
@@ -25,9 +25,6 @@
class SfxBroadcaster;
class SfxHint;
-#define SFX_NOTIFY( rBC, rBCT, rHint, rHintT ) \
- Notify( rBC, rHint )
-
class SVL_DLLPUBLIC SfxListener
{
struct Impl;
@@ -48,12 +45,12 @@ public:
void EndListeningAll();
bool IsListening( SfxBroadcaster& rBroadcaster ) const;
- sal_uInt16 GetBroadcasterCount() const;
- SfxBroadcaster* GetBroadcasterJOE( sal_uInt16 nNo ) const;
+ sal_uInt16 GetBroadcasterCount() const;
+ SfxBroadcaster* GetBroadcasterJOE( sal_uInt16 nNo ) const;
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
- void RemoveBroadcaster_Impl( SfxBroadcaster& rBC );
+ void RemoveBroadcaster_Impl( SfxBroadcaster& rBC );
};
#endif