summaryrefslogtreecommitdiff
path: root/include/unotools/useroptions.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/unotools/useroptions.hxx')
-rw-r--r--include/unotools/useroptions.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/unotools/useroptions.hxx b/include/unotools/useroptions.hxx
index 7a9cee52e4e7..e518d9f2c0d9 100644
--- a/include/unotools/useroptions.hxx
+++ b/include/unotools/useroptions.hxx
@@ -23,8 +23,7 @@
#include <unotools/configitem.hxx>
#include <osl/mutex.hxx>
#include <unotools/options.hxx>
-#include <boost/shared_ptr.hpp>
-#include <boost/weak_ptr.hpp>
+#include <memory>
// define ----------------------------------------------------------------
@@ -81,8 +80,8 @@ public:
private:
class Impl;
- boost::shared_ptr<Impl> pImpl;
- static boost::weak_ptr<Impl> pSharedImpl;
+ std::shared_ptr<Impl> xImpl;
+ static std::weak_ptr<Impl> xSharedImpl;
private:
class ChangeListener;
};