summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Slimber/Menulet.h')
-rw-r--r--Slimber/Menulet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Slimber/Menulet.h b/Slimber/Menulet.h
index 4f2e33f..4c06754 100644
--- a/Slimber/Menulet.h
+++ b/Slimber/Menulet.h
@@ -8,7 +8,7 @@
#include <string>
-#include <Swiften/Base/boost_bsignals.h>
+#include <boost/signals2.hpp>
class Menulet {
public:
@@ -22,5 +22,5 @@ class Menulet {
virtual void addSeparator() = 0;
virtual void setIcon(const std::string&) = 0;
- boost::signal<void ()> onRestartClicked;
+ boost::signals2::signal<void ()> onRestartClicked;
};