summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ext
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-23 12:08:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-23 14:32:43 +0000
commit09b637e36528165f5e937a418640d95440dac9ef (patch)
tree4d5a495612da5a3341ef1e19763b116ae547c856 /ucb/source/ucp/ext
parent6e7f5c5fce198bf2f3a228e1faea7f7e9ed09f77 (diff)
boost::scoped_ptr->std::unique_ptr
Change-Id: I03020e3536ee692a96224a517794c0d0a294f607 Reviewed-on: https://gerrit.libreoffice.org/18793 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 'ucb/source/ucp/ext')
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.hxx b/ucb/source/ucp/ext/ucpext_datasupplier.hxx
index c277a1cc6bf2..bb82e772886b 100644
--- a/ucb/source/ucp/ext/ucpext_datasupplier.hxx
+++ b/ucb/source/ucp/ext/ucpext_datasupplier.hxx
@@ -23,7 +23,7 @@
#include <rtl/ref.hxx>
#include <ucbhelper/resultset.hxx>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
namespace ucb { namespace ucp { namespace ext
@@ -69,7 +69,7 @@ namespace ucb { namespace ucp { namespace ext
virtual void validate() throw( com::sun::star::ucb::ResultSetException ) SAL_OVERRIDE;
private:
- ::boost::scoped_ptr< DataSupplier_Impl > m_pImpl;
+ std::unique_ptr< DataSupplier_Impl > m_pImpl;
};