diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-31 23:49:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-31 23:49:35 +0100 |
commit | ef6add9a7e0bcba1fb039afb75d62e753fa37949 (patch) | |
tree | 2f4bcee1cbcb97e6015995b7edd0d9087289a54e /svl | |
parent | d4d26018402aaa75fcb6524f5c7d99fcd9c5be45 (diff) |
callcatcher: remove unused code
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/brdcst.hxx | 3 | ||||
-rw-r--r-- | svl/source/notify/brdcst.cxx | 21 |
2 files changed, 0 insertions, 24 deletions
diff --git a/svl/inc/svl/brdcst.hxx b/svl/inc/svl/brdcst.hxx index d8ad823ed6d8..cc00157d3d90 100644 --- a/svl/inc/svl/brdcst.hxx +++ b/svl/inc/svl/brdcst.hxx @@ -64,9 +64,6 @@ public: virtual ~SfxBroadcaster(); void Broadcast( const SfxHint &rHint ); - void BroadcastDelayed( const SfxHint& rHint ); - void BroadcastInIdle( const SfxHint& rHint ); - sal_Bool HasListeners() const; sal_uInt16 GetListenerCount() const { return aListeners.Count(); } SfxListener* GetListener( sal_uInt16 nNo ) const diff --git a/svl/source/notify/brdcst.cxx b/svl/source/notify/brdcst.cxx index 7722814216a5..d70e98b55300 100644 --- a/svl/source/notify/brdcst.cxx +++ b/svl/source/notify/brdcst.cxx @@ -68,27 +68,6 @@ void SfxBroadcaster::Broadcast( const SfxHint &rHint ) } } -//-------------------------------------------------------------------- - -// broadcast after a timeout - - -void SfxBroadcaster::BroadcastDelayed( const SfxHint& rHint ) -{ - DBG_WARNING( "not implemented" ); - Broadcast(rHint); -} -//-------------------------------------------------------------------- - -// broadcast in idle-handler - -void SfxBroadcaster::BroadcastInIdle( const SfxHint& rHint ) -{ - DBG_WARNING( "not implemented" ); - Broadcast(rHint); -} -//-------------------------------------------------------------------- - // unregister all listeners SfxBroadcaster::~SfxBroadcaster() |