From 43f81d78a59fa46ef2ab4e5f0bf1bee1f65afe59 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 11 Nov 2014 19:15:25 -0500 Subject: Make these non-inline and add the const version of the getter. Change-Id: I8c175dcaaa51e2b05895226907697b070a2e2f77 --- svl/source/notify/broadcast.cxx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'svl/source/notify') diff --git a/svl/source/notify/broadcast.cxx b/svl/source/notify/broadcast.cxx index 30e7bd0b58a6..c0dfe4f4e69f 100644 --- a/svl/source/notify/broadcast.cxx +++ b/svl/source/notify/broadcast.cxx @@ -138,6 +138,15 @@ void SvtBroadcaster::Broadcast( const SfxHint &rHint ) void SvtBroadcaster::ListenersGone() {} +SvtBroadcaster::ListenersType& SvtBroadcaster::GetAllListeners() +{ + return maListeners; +} + +const SvtBroadcaster::ListenersType& SvtBroadcaster::GetAllListeners() const +{ + return maListeners; +} bool SvtBroadcaster::HasListeners() const { -- cgit