diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-29 20:52:09 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-16 06:49:59 +0000 |
commit | 94d2b31d984382ba76c623236f6daf678204844a (patch) | |
tree | 992ff39990517217dcb7ee9df6fc6720192b0760 /include | |
parent | a25d1a111150288b066351dfe11f75e5e4f81cfb (diff) |
tdf#89329: use shared_ptr for pImpl in pathoptions
Change-Id: Id932a0886f0a8a3cb05a3d0474e29a2e0b84ad4e
Reviewed-on: https://gerrit.libreoffice.org/25630
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/pathoptions.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unotools/pathoptions.hxx b/include/unotools/pathoptions.hxx index dce88d4687c2..da0b0e682f74 100644 --- a/include/unotools/pathoptions.hxx +++ b/include/unotools/pathoptions.hxx @@ -34,7 +34,7 @@ class SvtPathOptions_Impl; class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtPathOptions : public utl::detail::Options { private: - SvtPathOptions_Impl* pImp; + std::shared_ptr<SvtPathOptions_Impl> pImpl; public: enum Paths |