summaryrefslogtreecommitdiff
path: root/configmgr/source/api2/broadcaster.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/api2/broadcaster.cxx')
-rw-r--r--configmgr/source/api2/broadcaster.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/configmgr/source/api2/broadcaster.cxx b/configmgr/source/api2/broadcaster.cxx
index 9bd6cf0d27..71b29177c5 100644
--- a/configmgr/source/api2/broadcaster.cxx
+++ b/configmgr/source/api2/broadcaster.cxx
@@ -1112,12 +1112,6 @@ Broadcaster::Broadcaster(Notifier const& aNotifier, configuration::NodeChanges c
OSL_ASSERT(m_pImpl.isValid());
}
// ---------------------------------------------------------------------------------------------------
-Broadcaster::Broadcaster(Notifier const& aNotifier, configuration::NodeChangeInformation const& aChange, bool bLocal)
-: m_pImpl( Impl::create(aNotifier.m_aImpl,ApiTreeRef(aNotifier.m_pTree),aChange,bLocal) )
-{
- OSL_ASSERT(m_pImpl.isValid());
-}
-// ---------------------------------------------------------------------------------------------------
Broadcaster::Broadcaster(Notifier const& aNotifier, configuration::NodeChangesInformation const& aChanges, bool bLocal)
: m_pImpl( Impl::create(aNotifier.m_aImpl,ApiTreeRef(aNotifier.m_pTree),aChanges,bLocal) )
{
@@ -1184,16 +1178,6 @@ void Broadcaster::notifyListeners(configuration::NodeChange const& aChange) thro
}
// ---------------------------------------------------------------------------------------------------
-void Broadcaster::notifyListeners(configuration::NodeChangeInformation const& aChange) throw()
-{
- OSL_ENSURE(!aChange.isEmptyChange(),"Notifying without a change !");
-
- configuration::NodeChangesInformation aChanges;
- aChanges.push_back(aChange);
- this->notifyListeners(aChanges, true);
-}
-// ---------------------------------------------------------------------------------------------------
-
void Broadcaster::notifyListeners(configuration::NodeChanges const& aChanges, bool bSingleBase) throw()
{
OSL_ENSURE(!aChanges.isEmpty(),"Notifying without a change !");