From c17c4ca9f49f3f7f7c023c6afd172f43cf283a78 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Fri, 10 Jun 2016 01:38:09 +0200 Subject: tdf#89329: use shared_ptr for pImpl in ctloptions Change-Id: I196f2bbff0e7796804c2d74eb68ebf914796993d Reviewed-on: https://gerrit.libreoffice.org/26138 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svl/ctloptions.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/svl') 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 #include #include +#include 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 m_pImpl; public: -- cgit