From c2966acc465086b164b36e3366f164554f83ad21 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 31 Jul 2015 21:35:42 +0200 Subject: canvas: replace boost::function with std::function Change-Id: I1a4a3007a07a796d80d06ab7554953925bb8be3d --- canvas/source/opengl/ogl_canvashelper.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'canvas/source/opengl') diff --git a/canvas/source/opengl/ogl_canvashelper.cxx b/canvas/source/opengl/ogl_canvashelper.cxx index 6fb306f4d5fa..63acd3cc9a7f 100644 --- a/canvas/source/opengl/ogl_canvashelper.cxx +++ b/canvas/source/opengl/ogl_canvashelper.cxx @@ -37,9 +37,9 @@ #include #include -#include #include +#include using namespace ::com::sun::star; @@ -85,13 +85,13 @@ namespace oglcanvas rendering::ARGBColor maARGBColor; ::basegfx::B2DPolyPolygonVector maPolyPolys; - ::boost::function6< bool, + ::std::function< bool ( const CanvasHelper&, const ::basegfx::B2DHomMatrix&, GLenum, GLenum, const rendering::ARGBColor&, - const ::basegfx::B2DPolyPolygonVector& > maFunction; + const ::basegfx::B2DPolyPolygonVector&)> maFunction; }; namespace -- cgit