summaryrefslogtreecommitdiffstats
path: root/slideshow/source/engine/slide/userpaintoverlay.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/slide/userpaintoverlay.hxx')
-rw-r--r--slideshow/source/engine/slide/userpaintoverlay.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/slideshow/source/engine/slide/userpaintoverlay.hxx b/slideshow/source/engine/slide/userpaintoverlay.hxx
index 8c57ba222b84..eb37554defd0 100644
--- a/slideshow/source/engine/slide/userpaintoverlay.hxx
+++ b/slideshow/source/engine/slide/userpaintoverlay.hxx
@@ -25,7 +25,6 @@
#include "unoview.hxx"
#include "rgbcolor.hxx"
-#include <boost/noncopyable.hpp>
#include <memory>
#include <vector>
@@ -47,7 +46,7 @@ namespace slideshow
listening for mouse clicks and moves. When the mouse is
dragged, a hand sketching in the selected color is shown.
*/
- class UserPaintOverlay : private boost::noncopyable
+ class UserPaintOverlay
{
public:
/** Create a UserPaintOverlay
@@ -64,6 +63,8 @@ namespace slideshow
const PolyPolygonVector& rPolygons,
bool bActive);
~UserPaintOverlay();
+ UserPaintOverlay(const UserPaintOverlay&) = delete;
+ UserPaintOverlay& operator=(const UserPaintOverlay&) = delete;
PolyPolygonVector getPolygons();
void drawPolygons();