summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/ctloptions.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svl/ctloptions.hxx b/include/svl/ctloptions.hxx
index 0cc0e5b8141a..518f73e1d6b1 100644
--- a/include/svl/ctloptions.hxx
+++ b/include/svl/ctloptions.hxx
@@ -22,6 +22,7 @@
#include <svl/svldllapi.h>
#include <sal/types.h>
#include <unotools/options.hxx>
+#include <memory>
class SvtCTLOptions_Impl;
@@ -30,7 +31,7 @@ class SvtCTLOptions_Impl;
class SVL_DLLPUBLIC SvtCTLOptions : public utl::detail::Options
{
private:
- SvtCTLOptions_Impl* m_pImp;
+ std::shared_ptr<SvtCTLOptions_Impl> m_pImpl;
public: