summaryrefslogtreecommitdiff
path: root/include/cppcanvas/bitmapcanvas.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-14 09:21:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-14 12:54:25 +0000
commit22b80ac8e213ff63ce4f60e7d491f12cb42db313 (patch)
treeb00f1ed362747a05d79686a8709c3408cfdee59b /include/cppcanvas/bitmapcanvas.hxx
parentd8026ad65c8d50868f0f2fc0d2bd95820cddea83 (diff)
boost->std
Change-Id: I3fd9e1599c5ad812879a58cf1dabbcd393105e1c Reviewed-on: https://gerrit.libreoffice.org/18564 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/cppcanvas/bitmapcanvas.hxx')
-rw-r--r--include/cppcanvas/bitmapcanvas.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/cppcanvas/bitmapcanvas.hxx b/include/cppcanvas/bitmapcanvas.hxx
index b47d438151e5..1d4775ccd0aa 100644
--- a/include/cppcanvas/bitmapcanvas.hxx
+++ b/include/cppcanvas/bitmapcanvas.hxx
@@ -22,10 +22,9 @@
#include <sal/types.h>
#include <osl/diagnose.h>
-
-#include <boost/shared_ptr.hpp>
#include <basegfx/vector/b2isize.hxx>
#include <cppcanvas/canvas.hxx>
+#include <memory>
/* Definition of BitmapCanvas */
@@ -35,7 +34,7 @@ namespace cppcanvas
class BitmapCanvas;
// forward declaration, since cloneBitmapCanvas() also references BitmapCanvas
- typedef ::boost::shared_ptr< BitmapCanvas > BitmapCanvasSharedPtr;
+ typedef std::shared_ptr< BitmapCanvas > BitmapCanvasSharedPtr;
/** BitmapCanvas interface
*/