summaryrefslogtreecommitdiff
path: root/include/canvas
diff options
context:
space:
mode:
Diffstat (limited to 'include/canvas')
-rw-r--r--include/canvas/rendering/bitmap.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/canvas/rendering/bitmap.hxx b/include/canvas/rendering/bitmap.hxx
index f68f74f34f91..9fc1070f243a 100644
--- a/include/canvas/rendering/bitmap.hxx
+++ b/include/canvas/rendering/bitmap.hxx
@@ -30,7 +30,7 @@
#include <canvas/rendering/isurfaceproxymanager.hxx>
#include <boost/shared_ptr.hpp>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
#include <vector>
namespace basegfx
@@ -303,7 +303,7 @@ namespace canvas
private:
friend class ImplBitmap;
- const ::boost::scoped_ptr< ImplBitmap > mpImpl;
+ const std::unique_ptr< ImplBitmap > mxImpl;
};
typedef ::boost::shared_ptr< Bitmap > BitmapSharedPtr;