diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-31 18:30:09 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-31 21:24:25 +0200 |
commit | 2a62966d8947829d00702455977026369082007a (patch) | |
tree | e2323fa9b36ed1686f03de9aa5a272c77f3cc902 /include/sfx2/sidebar/AsynchronousCall.hxx | |
parent | 1841946863ed006a36323fcca52a71272eae2ee6 (diff) |
sfx2: replace boost::function with std::function
Change-Id: I72acc5f396553eb464338a395ef40f95ed57a07e
Diffstat (limited to 'include/sfx2/sidebar/AsynchronousCall.hxx')
-rw-r--r-- | include/sfx2/sidebar/AsynchronousCall.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sfx2/sidebar/AsynchronousCall.hxx b/include/sfx2/sidebar/AsynchronousCall.hxx index 338505c83e4b..408805ad4330 100644 --- a/include/sfx2/sidebar/AsynchronousCall.hxx +++ b/include/sfx2/sidebar/AsynchronousCall.hxx @@ -19,10 +19,11 @@ #ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_ASYNCHRONOUSCALL_HXX #define INCLUDED_SFX2_SOURCE_SIDEBAR_ASYNCHRONOUSCALL_HXX -#include <boost/function.hpp> #include <tools/solar.h> #include <tools/link.hxx> +#include <functional> + struct ImplSVEvent; namespace sfx2 { namespace sidebar { @@ -32,7 +33,7 @@ namespace sfx2 { namespace sidebar { class AsynchronousCall { public: - typedef ::boost::function<void()> Action; + typedef ::std::function<void()> Action; AsynchronousCall(); AsynchronousCall (const Action& rAction); |