summaryrefslogtreecommitdiff
path: root/sw/inc/unofieldcoll.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-08-07 09:21:39 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-08-07 09:23:00 +0200
commit33aead22a90ec94e625bbc1b9808096e6c370616 (patch)
treef76144a32bab91f35fa2ca2de3d84d4b86854e55 /sw/inc/unofieldcoll.hxx
parent09a9234c021ad98c5adeb493b5814e97b92ee912 (diff)
sw: use std::unique_ptr in sw-global includes
Change-Id: I7b1a313e6c36fd162878cfc9f17ae73f91a72665
Diffstat (limited to 'sw/inc/unofieldcoll.hxx')
-rw-r--r--sw/inc/unofieldcoll.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/unofieldcoll.hxx b/sw/inc/unofieldcoll.hxx
index 1b1cab829262..30cf0dbd4571 100644
--- a/sw/inc/unofieldcoll.hxx
+++ b/sw/inc/unofieldcoll.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SW_INC_UNOFIELDCOLL_HXX
#define INCLUDED_SW_INC_UNOFIELDCOLL_HXX
-#include <boost/scoped_ptr.hpp>
+#include <memory>
#include <com/sun/star/util/XRefreshable.hpp>
@@ -86,7 +86,7 @@ class SwXTextFieldTypes
{
private:
class Impl;
- ::boost::scoped_ptr<Impl> m_pImpl; // currently does not need UnoImplPtr
+ std::unique_ptr<Impl> m_pImpl; // currently does not need UnoImplPtr
protected:
virtual ~SwXTextFieldTypes();