summaryrefslogtreecommitdiff
path: root/include/cppcanvas/canvas.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppcanvas/canvas.hxx')
-rw-r--r--include/cppcanvas/canvas.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/cppcanvas/canvas.hxx b/include/cppcanvas/canvas.hxx
index 3538ffd619f3..caba56da59f3 100644
--- a/include/cppcanvas/canvas.hxx
+++ b/include/cppcanvas/canvas.hxx
@@ -21,11 +21,9 @@
#define INCLUDED_CPPCANVAS_CANVAS_HXX
#include <com/sun/star/uno/Reference.hxx>
-
-#include <boost/shared_ptr.hpp>
#include <cppcanvas/font.hxx>
#include <cppcanvas/color.hxx>
-
+#include <memory>
namespace basegfx
{
@@ -48,10 +46,10 @@ namespace cppcanvas
class Canvas;
// forward declaration, since tools::PolyPolygon also references Canvas
- typedef ::boost::shared_ptr< PolyPolygon > PolyPolygonSharedPtr;
+ typedef std::shared_ptr< PolyPolygon > PolyPolygonSharedPtr;
// forward declaration, since cloneCanvas() also references Canvas
- typedef ::boost::shared_ptr< Canvas > CanvasSharedPtr;
+ typedef std::shared_ptr< Canvas > CanvasSharedPtr;
/** Canvas interface
*/