summaryrefslogtreecommitdiff
path: root/include/comphelper/asyncnotification.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/asyncnotification.hxx')
-rw-r--r--include/comphelper/asyncnotification.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/comphelper/asyncnotification.hxx b/include/comphelper/asyncnotification.hxx
index 58cb17df6a44..01d589c8540e 100644
--- a/include/comphelper/asyncnotification.hxx
+++ b/include/comphelper/asyncnotification.hxx
@@ -22,19 +22,15 @@
#include <sal/config.h>
-#include <boost/scoped_ptr.hpp>
#include <comphelper/comphelperdllapi.h>
#include <rtl/ref.hxx>
#include <sal/types.h>
#include <salhelper/thread.hxx>
#include <salhelper/simplereferenceobject.hxx>
-
+#include <memory>
namespace comphelper
{
-
-
-
//= AnyEvent
/** the very basic instance to hold a description of an event
@@ -104,7 +100,7 @@ namespace comphelper
friend struct EventNotifierImpl;
private:
- boost::scoped_ptr< EventNotifierImpl > m_pImpl;
+ std::unique_ptr<EventNotifierImpl> m_xImpl;
SAL_DLLPRIVATE virtual ~AsyncEventNotifier();