summaryrefslogtreecommitdiffstats
path: root/sdext/source/presenter/PresenterFrameworkObserver.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterFrameworkObserver.hxx')
-rw-r--r--sdext/source/presenter/PresenterFrameworkObserver.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sdext/source/presenter/PresenterFrameworkObserver.hxx b/sdext/source/presenter/PresenterFrameworkObserver.hxx
index 3ebc2cb59140..edc9481605cf 100644
--- a/sdext/source/presenter/PresenterFrameworkObserver.hxx
+++ b/sdext/source/presenter/PresenterFrameworkObserver.hxx
@@ -24,9 +24,11 @@
#include <com/sun/star/drawing/framework/XConfigurationController.hpp>
#include <cppuhelper/basemutex.hxx>
#include <cppuhelper/compbase1.hxx>
-#include <boost/function.hpp>
+
#include <boost/noncopyable.hpp>
+#include <functional>
+
namespace sdext { namespace presenter {
typedef ::cppu::WeakComponentImplHelper1 <
@@ -42,8 +44,8 @@ class PresenterFrameworkObserver
public PresenterFrameworkObserverInterfaceBase
{
public:
- typedef ::boost::function<bool()> Predicate;
- typedef ::boost::function<void(bool)> Action;
+ typedef ::std::function<bool ()> Predicate;
+ typedef ::std::function<void (bool)> Action;
static void RunOnUpdateEnd (
const css::uno::Reference<css::drawing::framework::XConfigurationController>&rxController,