summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-31 18:29:36 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-31 21:24:24 +0200
commit1841946863ed006a36323fcca52a71272eae2ee6 (patch)
treedc3b5b5ccdab8cf63d7cdfbff5ffe0298b0afdf6 /include
parent7ee228a108d1e5d4ffa9121e0890e23982f8ecb5 (diff)
toolkit: replace boost::function with std::function
Change-Id: I4bf5b2aab1dd76e596c191ae2eec8eb18005b914
Diffstat (limited to 'include')
-rw-r--r--include/toolkit/awt/vclxwindow.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/toolkit/awt/vclxwindow.hxx b/include/toolkit/awt/vclxwindow.hxx
index 1ab1f9e8a8d2..dab9b8e82eeb 100644
--- a/include/toolkit/awt/vclxwindow.hxx
+++ b/include/toolkit/awt/vclxwindow.hxx
@@ -45,7 +45,8 @@
#include <stdarg.h>
#include <list>
-#include <boost/function.hpp>
+#include <functional>
+
class VclSimpleEvent;
class VclWindowEvent;
@@ -56,11 +57,8 @@ namespace toolkit
class IAccessibleFactory;
}
-
-
// class VCLXWINDOW
-
class UnoPropertyArrayHelper;
class VCLXWindowImpl;
typedef ::cppu::ImplInheritanceHelper9 < VCLXDevice
@@ -108,7 +106,7 @@ protected:
::cppu::OInterfaceContainerHelper& GetTopWindowListeners();
public:
- typedef ::boost::function0< void > Callback;
+ typedef ::std::function<void ()> Callback;
protected:
/** executes the given callback asynchronously