Kaydet (Commit) 18419468 authored tarafından Michael Stahl's avatar Michael Stahl

toolkit: replace boost::function with std::function

Change-Id: I4bf5b2aab1dd76e596c191ae2eec8eb18005b914
üst 7ee228a1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment