summaryrefslogtreecommitdiff
path: root/src/lib/config.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-24 22:13:53 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-24 22:13:53 +0100
commit63ea6b6c5ee64f8ee067c2b488d004b6dfe363e0 (patch)
treed248762556466fd076cfd20f2e6aa1d5d9544184 /src/lib/config.h
parent977b36672892b14de4ecb68e98415c64946e8a93 (diff)
Use boost::signals2; fix bugs with x-thread signalling.
Diffstat (limited to 'src/lib/config.h')
-rw-r--r--src/lib/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index 840dcdaef..1ded015f2 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -26,7 +26,7 @@
#include <vector>
#include <boost/shared_ptr.hpp>
-#include <sigc++/signal.h>
+#include <boost/signals2.hpp>
class ServerDescription;
class Screen;
@@ -176,7 +176,7 @@ public:
void write () const;
- sigc::signal0<void> Changed;
+ boost::signals2::signal<void()> Changed;
static Config* instance ();