summaryrefslogtreecommitdiffstats
path: root/svl/source/notify/broadcast.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/notify/broadcast.cxx')
-rw-r--r--svl/source/notify/broadcast.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/svl/source/notify/broadcast.cxx b/svl/source/notify/broadcast.cxx
index ac58097c76a3..350cfcd268c5 100644
--- a/svl/source/notify/broadcast.cxx
+++ b/svl/source/notify/broadcast.cxx
@@ -113,32 +113,4 @@ void SvtBroadcaster::ListenersGone()
{
}
-//--------------------------------------------------------------------
-
-// forward a notification to all registered listeners
-
-void SvtBroadcaster::Forward( SvtBroadcaster& rBC, const SfxHint& rHint )
-{
- // is anybody to notify?
- if( rBC.HasListeners() /* && !IsModifyLocked()*/ )
- {
-// LockModify();
-// bInModify = sal_True;
-
- SvtListenerIter aIter( rBC );
- SvtListener* pLast = aIter.GoStart();
- if( pLast )
- do {
- pLast->Notify( rBC, rHint );
- if( !rBC.HasListeners() ) // all gone ??
- break;
- } while( 0 != ( pLast = aIter.GoNext() ));
-
-// bInModify = sal_False;
-// UnlockModify();
- }
-}
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */