summaryrefslogtreecommitdiff
path: root/canvas/source/vcl/canvashelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'canvas/source/vcl/canvashelper.hxx')
-rw-r--r--canvas/source/vcl/canvashelper.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/canvas/source/vcl/canvashelper.hxx b/canvas/source/vcl/canvashelper.hxx
index 332203c82f20..11c06c5afcdf 100644
--- a/canvas/source/vcl/canvashelper.hxx
+++ b/canvas/source/vcl/canvashelper.hxx
@@ -31,8 +31,6 @@
#include "cachedbitmap.hxx"
#include "outdevprovider.hxx"
-#include <boost/noncopyable.hpp>
-
namespace vclcanvas
{
@@ -42,13 +40,17 @@ namespace vclcanvas
optional backbuffer painting, when providing it with a second
OutputDevice to render into.
*/
- class CanvasHelper : private ::boost::noncopyable
+ class CanvasHelper
{
public:
/** Create canvas helper
*/
CanvasHelper();
+ /// make noncopyable
+ CanvasHelper(const CanvasHelper&) = delete;
+ const CanvasHelper& operator=(const CanvasHelper&) = delete;
+
/// Release all references
void disposing();