summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/EventNotifier.h')
-rw-r--r--Swift/Controllers/EventNotifier.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/Controllers/EventNotifier.h b/Swift/Controllers/EventNotifier.h
index 4661c46..e9c1466 100644
--- a/Swift/Controllers/EventNotifier.h
+++ b/Swift/Controllers/EventNotifier.h
@@ -6,7 +6,7 @@
#pragma once
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/JID/JID.h>
@@ -32,7 +32,7 @@ namespace Swift {
boost::signal<void (const JID&)> onNotificationActivated;
private:
- void handleEventAdded(boost::shared_ptr<StanzaEvent>);
+ void handleEventAdded(std::shared_ptr<StanzaEvent>);
void handleNotificationActivated(JID jid);
private: