summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-07 16:27:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-07 18:43:32 +0100
commitb20888e1299464249875652ac3794258a75c593b (patch)
tree59644321d8b3de9cf63273cb9566a07d4a6fcfc0 /configmgr
parentae2ccda11747689e56688936bf9aa30b76ca1b26 (diff)
auto_ptr -> scoped_ptr
Change-Id: I5e405ec2689000c973cf8ff1f86c1c2d6202eda9
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/childaccess.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/childaccess.hxx b/configmgr/source/childaccess.hxx
index ef1444a0a997..8eb688ee2590 100644
--- a/configmgr/source/childaccess.hxx
+++ b/configmgr/source/childaccess.hxx
@@ -22,16 +22,16 @@
#include "sal/config.h"
-#include <memory>
#include <vector>
+#include "boost/scoped_ptr.hpp"
+#include "boost/shared_ptr.hpp"
#include "com/sun/star/container/XChild.hpp"
#include "com/sun/star/lang/NoSupportException.hpp"
#include "com/sun/star/lang/XUnoTunnel.hpp"
#include "com/sun/star/uno/Reference.hxx"
#include "com/sun/star/uno/RuntimeException.hpp"
#include "com/sun/star/uno/Sequence.hxx"
-#include "boost/shared_ptr.hpp"
#include "rtl/ref.hxx"
#include "sal/types.h"
@@ -134,7 +134,7 @@ private:
rtl::Reference< Access > parent_; // null if free node
OUString name_;
rtl::Reference< Node > node_;
- std::auto_ptr< com::sun::star::uno::Any > changedValue_;
+ boost::scoped_ptr< com::sun::star::uno::Any > changedValue_;
bool inTransaction_;
// to determine if a free node can be inserted underneath some root
boost::shared_ptr<osl::Mutex> lock_;