summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr.hxx6
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