summaryrefslogtreecommitdiff
path: root/vcl/inc/salvd.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-26 12:37:20 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-26 17:51:28 +0100
commit39963be8679ceef5d08eda9e04e97b6fbb079b71 (patch)
tree75337d944e12b0a3833e9093debb4d95ca6b0691 /vcl/inc/salvd.hxx
parent27feec6f91e464651ede25a955aac5bf75bcacf6 (diff)
vcl: convert boost::shared_array to std::shared_ptr
Change-Id: I9d0ad886c4c6e1c8496eb6129b22d327ca0968eb
Diffstat (limited to 'vcl/inc/salvd.hxx')
-rw-r--r--vcl/inc/salvd.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcl/inc/salvd.hxx b/vcl/inc/salvd.hxx
index 4500cd9748c4..d3874c110399 100644
--- a/vcl/inc/salvd.hxx
+++ b/vcl/inc/salvd.hxx
@@ -22,7 +22,8 @@
#include <vcl/dllapi.h>
#include <salgeom.hxx>
-#include <boost/shared_array.hpp>
+
+#include <memory>
class SalGraphics;
@@ -47,7 +48,7 @@ public:
// Set new size using a buffer at the given address
virtual bool SetSizeUsingBuffer( long nNewDX, long nNewDY,
- const boost::shared_array<sal_uInt8> & /* pBuffer */ )
+ const std::shared_ptr<sal_uInt8> & /* pBuffer */ )
{
// Only the headless virtual device has an implementation that uses
// pBuffer (and bTopDown).