diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-09-21 19:05:16 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-09-21 19:10:12 +0900 |
commit | 991b8394ffe598ec3b17968184fe60eb2cc04cc9 (patch) | |
tree | bc100e28ce7f46bc50e87f44dc1b2d60d7fe4640 /basic | |
parent | a0b108ac29e9645c1b2b548d69397cdb71b5a79e (diff) |
replace deprecated std::auto_ptr with boost::scoped_ptr
Change-Id: Id10a6cef0ae25247ded7846dfd7df27922a9410a
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/dllmgr.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/dllmgr.hxx b/basic/source/runtime/dllmgr.hxx index cc0c7fc3a70e..5a8803487995 100644 --- a/basic/source/runtime/dllmgr.hxx +++ b/basic/source/runtime/dllmgr.hxx @@ -22,10 +22,10 @@ #include "sal/config.h" -#include <memory> +#include <boost/noncopyable.hpp> +#include <boost/scoped_ptr.hpp> #include "basic/sberrors.hxx" -#include "boost/noncopyable.hpp" namespace rtl { class OUString; } class SbxArray; @@ -46,7 +46,7 @@ public: private: struct Impl; - std::auto_ptr< Impl > impl_; + boost::scoped_ptr< Impl > impl_; }; #endif |