summaryrefslogtreecommitdiffstats
path: root/slideshow/source/inc/shape.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/inc/shape.hxx')
-rw-r--r--slideshow/source/inc/shape.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/slideshow/source/inc/shape.hxx b/slideshow/source/inc/shape.hxx
index 59bbd99b71d3..d3cf3b817331 100644
--- a/slideshow/source/inc/shape.hxx
+++ b/slideshow/source/inc/shape.hxx
@@ -28,7 +28,6 @@
#include "viewlayer.hxx"
-#include <boost/noncopyable.hpp>
#include <memory>
#include <set>
#include <vector>
@@ -52,10 +51,13 @@ namespace slideshow
slide's shape, providing bound rect, underlying XShape and
basic paint methods.
*/
- class Shape : private boost::noncopyable
+ class Shape
{
public:
+ Shape() = default;
virtual ~Shape() {}
+ Shape(const Shape&) = delete;
+ Shape& operator=(const Shape&) = delete;
/** Get the associated XShape of this shape.