diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-31 18:29:36 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-31 21:24:24 +0200 |
commit | 1841946863ed006a36323fcca52a71272eae2ee6 (patch) | |
tree | dc3b5b5ccdab8cf63d7cdfbff5ffe0298b0afdf6 /include | |
parent | 7ee228a108d1e5d4ffa9121e0890e23982f8ecb5 (diff) |
toolkit: replace boost::function with std::function
Change-Id: I4bf5b2aab1dd76e596c191ae2eec8eb18005b914
Diffstat (limited to 'include')
-rw-r--r-- | include/toolkit/awt/vclxwindow.hxx | 8 |
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 |