summaryrefslogtreecommitdiff
path: root/include/canvas/propertysethelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/canvas/propertysethelper.hxx')
-rw-r--r--include/canvas/propertysethelper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/canvas/propertysethelper.hxx b/include/canvas/propertysethelper.hxx
index 37aea9313f4a..22560979a308 100644
--- a/include/canvas/propertysethelper.hxx
+++ b/include/canvas/propertysethelper.hxx
@@ -24,7 +24,7 @@
#include <com/sun/star/beans/XPropertySet.hpp>
#include <canvas/canvastools.hxx>
-#include <boost/function.hpp>
+#include <functional>
#include <vector>
#include <memory>
@@ -50,8 +50,8 @@ namespace canvas
class CANVASTOOLS_DLLPUBLIC PropertySetHelper
{
public:
- typedef boost::function0< ::com::sun::star::uno::Any > GetterType;
- typedef boost::function1<void, const ::com::sun::star::uno::Any&> SetterType;
+ typedef std::function<::com::sun::star::uno::Any ()> GetterType;
+ typedef std::function<void (const ::com::sun::star::uno::Any&)> SetterType;
struct Callbacks
{
GetterType getter;