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.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/configmgr/source/broadcaster.hxx b/configmgr/source/broadcaster.hxx
index 9c7e2822685a..46b7f64ee934 100644
--- a/configmgr/source/broadcaster.hxx
+++ b/configmgr/source/broadcaster.hxx
@@ -24,7 +24,6 @@
#include <vector>
-#include <boost/noncopyable.hpp>
#include <com/sun/star/beans/PropertyChangeEvent.hpp>
#include <com/sun/star/container/ContainerEvent.hpp>
#include <com/sun/star/lang/EventObject.hpp>
@@ -44,8 +43,10 @@ namespace com { namespace sun { namespace star {
namespace configmgr {
-class Broadcaster: private boost::noncopyable {
+class Broadcaster {
public:
+ Broadcaster() {}
+
void addDisposeNotification(
com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >
const & listener,
@@ -85,6 +86,9 @@ public:
void send();
private:
+ Broadcaster(const Broadcaster&) SAL_DELETED_FUNCTION;
+ Broadcaster& operator=(const Broadcaster&) SAL_DELETED_FUNCTION;
+
struct DisposeNotification {
com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >
listener;