diff options
Diffstat (limited to 'canvas/source/opengl')
-rw-r--r-- | canvas/source/opengl/ogl_canvashelper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <GL/glew.h> #include <boost/bind.hpp> -#include <boost/function.hpp> #include <memory> +#include <functional> 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 |