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.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/slide/userpaintoverlay.hxx b/slideshow/source/engine/slide/userpaintoverlay.hxx
index 2d46309759b7..8c57ba222b84 100644
--- a/slideshow/source/engine/slide/userpaintoverlay.hxx
+++ b/slideshow/source/engine/slide/userpaintoverlay.hxx
@@ -26,7 +26,7 @@
#include "rgbcolor.hxx"
#include <boost/noncopyable.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <vector>
/* Definition of UserPaintOverlay class */
@@ -39,7 +39,7 @@ namespace slideshow
struct SlideShowContext;
class PaintOverlayHandler;
- typedef ::boost::shared_ptr< class UserPaintOverlay > UserPaintOverlaySharedPtr;
+ typedef ::std::shared_ptr< class UserPaintOverlay > UserPaintOverlaySharedPtr;
typedef ::std::vector< ::cppcanvas::PolyPolygonSharedPtr> PolyPolygonVector;
/** Slide overlay, which can be painted into by the user.
@@ -74,7 +74,7 @@ namespace slideshow
const PolyPolygonVector& rPolygons,
bool bActive );
- ::boost::shared_ptr<PaintOverlayHandler> mpHandler;
+ ::std::shared_ptr<PaintOverlayHandler> mpHandler;
EventMultiplexer& mrMultiplexer;
};
}