]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.h
changelogs
[lyx.git] / src / frontends / WorkArea.h
index b54e3145a4cb0c82d6f8642dc9079818e7cc7839..e1fb7fffb7c23676fe2da4cd1ad31179f9dfe2d3 100644 (file)
@@ -16,9 +16,7 @@
 #include "frontends/key_state.h"
 
 #include <boost/shared_ptr.hpp>
-#include <boost/signals/signal0.hpp>
-#include <boost/signals/signal1.hpp>
-#include <boost/signals/signal2.hpp>
+#include <boost/signal.hpp>
 
 
 class Painter;
@@ -65,17 +63,17 @@ public:
        virtual void putClipboard(std::string const &) const = 0;
 
        /// work area dimensions have changed
-       boost::signal0<void> workAreaResize;
+       boost::signal<void()> workAreaResize;
        /// the scrollbar has changed
-       boost::signal1<void, int> scrollDocView;
+       boost::signal<void(int)> scrollDocView;
        /// a key combination has been pressed
-       boost::signal2<void, LyXKeySymPtr, key_modifier::state> workAreaKeyPress;
+       boost::signal<void(LyXKeySymPtr, key_modifier::state)> workAreaKeyPress;
        /// some mouse event
-       boost::signal1<void, FuncRequest> dispatch;
+       boost::signal<void(FuncRequest)> dispatch;
        /// emitted when an X client has requested our selection
-       boost::signal0<void> selectionRequested;
+       boost::signal<void()> selectionRequested;
        /// emitted when another X client has stolen our selection
-       boost::signal0<void> selectionLost;
+       boost::signal<void()> selectionLost;
 };
 
 #endif // WORKAREA_H