summaryrefslogtreecommitdiff
path: root/basic/source/runtime/dllmgr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/dllmgr.hxx')
-rw-r--r--basic/source/runtime/dllmgr.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/basic/source/runtime/dllmgr.hxx b/basic/source/runtime/dllmgr.hxx
index 9bb1a0faf8cb..80af31b57e90 100644
--- a/basic/source/runtime/dllmgr.hxx
+++ b/basic/source/runtime/dllmgr.hxx
@@ -21,11 +21,9 @@
#define INCLUDED_BASIC_SOURCE_RUNTIME_DLLMGR_HXX
#include <sal/config.h>
-
-#include <boost/noncopyable.hpp>
-#include <boost/scoped_ptr.hpp>
-
#include <basic/sberrors.hxx>
+#include <boost/noncopyable.hpp>
+#include <memory>
class SbxArray;
class SbxVariable;
@@ -45,7 +43,7 @@ public:
private:
struct Impl;
- boost::scoped_ptr< Impl > impl_;
+ std::unique_ptr< Impl > impl_;
};
#endif