summaryrefslogtreecommitdiff
path: root/configmgr/source/broadcaster.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/broadcaster.hxx')
-rw-r--r--configmgr/source/broadcaster.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/configmgr/source/broadcaster.hxx b/configmgr/source/broadcaster.hxx
index 6c4943f5526e..711e7a83bd9e 100644
--- a/configmgr/source/broadcaster.hxx
+++ b/configmgr/source/broadcaster.hxx
@@ -72,7 +72,7 @@ public:
void addChangesNotification(
css::uno::Reference< css::util::XChangesListener > const & listener,
- css::util::ChangesEvent const & event);
+ css::util::ChangesEvent const & event, bool bRootListener);
void send();
@@ -86,7 +86,7 @@ private:
DisposeNotification(
css::uno::Reference< css::lang::XEventListener > const & theListener,
- css::lang::EventObject const & theEvent);
+ css::lang::EventObject theEvent);
};
struct ContainerNotification {
@@ -95,7 +95,7 @@ private:
ContainerNotification(
css::uno::Reference< css::container::XContainerListener > const & theListener,
- css::container::ContainerEvent const & theEvent);
+ css::container::ContainerEvent theEvent);
};
struct PropertyChangeNotification {
@@ -104,7 +104,7 @@ private:
PropertyChangeNotification(
css::uno::Reference< css::beans::XPropertyChangeListener > const & theListener,
- css::beans::PropertyChangeEvent const & theEvent);
+ css::beans::PropertyChangeEvent theEvent);
};
struct PropertiesChangeNotification {
@@ -122,7 +122,7 @@ private:
ChangesNotification(
css::uno::Reference< css::util::XChangesListener > const & theListener,
- css::util::ChangesEvent const & theEvent);
+ css::util::ChangesEvent theEvent);
};
std::vector< DisposeNotification > disposeNotifications_;
@@ -131,6 +131,7 @@ private:
std::vector< ContainerNotification > containerElementReplacedNotifications_;
std::vector< PropertyChangeNotification > propertyChangeNotifications_;
std::vector< PropertiesChangeNotification > propertiesChangeNotifications_;
+ std::vector< ChangesNotification > rootChangesNotifications_;
std::vector< ChangesNotification > changesNotifications_;
};