summaryrefslogtreecommitdiff
path: root/drawinglayer
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-18 15:37:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-19 08:02:51 +0000
commitf7ef1cbb83fdc6c43fa39fd50a9e12703e4fcf5f (patch)
treeae237578179192c1b5bfbe63cc1c0f11c87acb64 /drawinglayer
parentf626b886d03f882fc72589db846f24df5290bb03 (diff)
boost->std
Change-Id: I5079e03f70370ed83a1158b2e278f48642108f08 Reviewed-on: https://gerrit.libreoffice.org/18692 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 'drawinglayer')
-rw-r--r--drawinglayer/README2
-rw-r--r--drawinglayer/source/processor2d/vclpixelprocessor2d.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/drawinglayer/README b/drawinglayer/README
index d950f29cfddb..b530ba6fedac 100644
--- a/drawinglayer/README
+++ b/drawinglayer/README
@@ -19,7 +19,7 @@ A stripped down version with extended comments:
VirtualDevice aVirtualDevice;
// Create processor and draw primitives, to get it ready for rendering.
- boost::scoped_ptr<drawinglayer::processor2d::BaseProcessor2D> pProcessor2D(
+ std::unique_ptr<drawinglayer::processor2d::BaseProcessor2D> pProcessor2D(
drawinglayer::processor2d::createPixelProcessor2DFromOutputDevice(...));
if (pProcessor2D)
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
index 3a70dd8a4eb0..6699934c1409 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
@@ -25,7 +25,7 @@
#include "vclprocessor2d.hxx"
#include <vcl/outdev.hxx>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
// predefines
@@ -53,7 +53,7 @@ namespace drawinglayer
{
private:
struct Impl;
- boost::scoped_ptr<Impl> m_pImpl;
+ std::unique_ptr<Impl> m_pImpl;
protected:
/* the local processor for BasePrinitive2D-Implementation based primitives,