summaryrefslogtreecommitdiff
path: root/canvas/source/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'canvas/source/vcl')
-rw-r--r--canvas/source/vcl/backbuffer.hxx5
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.hxx5
-rw-r--r--canvas/source/vcl/cachedbitmap.hxx6
-rw-r--r--canvas/source/vcl/outdevprovider.hxx5
4 files changed, 8 insertions, 13 deletions
diff --git a/canvas/source/vcl/backbuffer.hxx b/canvas/source/vcl/backbuffer.hxx
index 0beeda2e0467..babdf935874d 100644
--- a/canvas/source/vcl/backbuffer.hxx
+++ b/canvas/source/vcl/backbuffer.hxx
@@ -25,8 +25,7 @@
#include <canvas/vclwrapper.hxx>
#include "outdevprovider.hxx"
-#include <boost/shared_ptr.hpp>
-
+#include <memory>
namespace vclcanvas
{
@@ -54,7 +53,7 @@ namespace vclcanvas
VclPtr< VirtualDevice > maVDev;
};
- typedef ::boost::shared_ptr< BackBuffer > BackBufferSharedPtr;
+ typedef std::shared_ptr< BackBuffer > BackBufferSharedPtr;
}
#endif // INCLUDED_CANVAS_SOURCE_VCL_BACKBUFFER_HXX
diff --git a/canvas/source/vcl/bitmapbackbuffer.hxx b/canvas/source/vcl/bitmapbackbuffer.hxx
index b51867994a68..1207369074da 100644
--- a/canvas/source/vcl/bitmapbackbuffer.hxx
+++ b/canvas/source/vcl/bitmapbackbuffer.hxx
@@ -26,8 +26,7 @@
#include <canvas/vclwrapper.hxx>
#include "outdevprovider.hxx"
-#include <boost/shared_ptr.hpp>
-
+#include <memory>
namespace vclcanvas
{
@@ -88,7 +87,7 @@ namespace vclcanvas
mutable bool mbVDevContentIsCurrent;
};
- typedef ::boost::shared_ptr< BitmapBackBuffer > BitmapBackBufferSharedPtr;
+ typedef std::shared_ptr< BitmapBackBuffer > BitmapBackBufferSharedPtr;
}
diff --git a/canvas/source/vcl/cachedbitmap.hxx b/canvas/source/vcl/cachedbitmap.hxx
index ffb9d571a367..acf8391933d8 100644
--- a/canvas/source/vcl/cachedbitmap.hxx
+++ b/canvas/source/vcl/cachedbitmap.hxx
@@ -21,17 +21,15 @@
#define INCLUDED_CANVAS_SOURCE_VCL_CACHEDBITMAP_HXX
#include <canvas/base/cachedprimitivebase.hxx>
-
#include <svtools/grfmgr.hxx>
-
-#include <boost/shared_ptr.hpp>
+#include <memory>
/* Definition of CachedBitmap class */
namespace vclcanvas
{
- typedef ::boost::shared_ptr< GraphicObject > GraphicObjectSharedPtr;
+ typedef std::shared_ptr< GraphicObject > GraphicObjectSharedPtr;
class CachedBitmap : public ::canvas::CachedPrimitiveBase
{
diff --git a/canvas/source/vcl/outdevprovider.hxx b/canvas/source/vcl/outdevprovider.hxx
index 37c48c63a36e..c09b580cf4f9 100644
--- a/canvas/source/vcl/outdevprovider.hxx
+++ b/canvas/source/vcl/outdevprovider.hxx
@@ -21,8 +21,7 @@
#define INCLUDED_CANVAS_SOURCE_VCL_OUTDEVPROVIDER_HXX
#include <sal/types.h>
-#include <boost/shared_ptr.hpp>
-
+#include <memory>
class OutputDevice;
@@ -47,7 +46,7 @@ namespace vclcanvas
virtual const OutputDevice& getOutDev() const = 0;
};
- typedef ::boost::shared_ptr< OutDevProvider > OutDevProviderSharedPtr;
+ typedef std::shared_ptr< OutDevProvider > OutDevProviderSharedPtr;
}
#endif // INCLUDED_CANVAS_SOURCE_VCL_OUTDEVPROVIDER_HXX