diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-06-14 02:19:52 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-14 11:20:41 +0000 |
commit | 6eebac959595f4bd7d4bd40c8325f1bc2782b3b8 (patch) | |
tree | 93c952c65761154e3c2905d9cf25b6b4fd3672ad /include | |
parent | decc3bfae82ddde724b351d8c4618436d45e43fb (diff) |
tdf#89329: use shared_ptr for pImpl in misccfg
Change-Id: I90d3d008f68991613775234b29379c31b8f4ad39
Reviewed-on: https://gerrit.libreoffice.org/26237
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/misccfg.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/unotools/misccfg.hxx b/include/unotools/misccfg.hxx index 9aebe796b4e8..297e48e3f369 100644 --- a/include/unotools/misccfg.hxx +++ b/include/unotools/misccfg.hxx @@ -21,11 +21,16 @@ #include <unotools/unotoolsdllapi.h> #include <unotools/options.hxx> +#include <memory> namespace utl { +class SfxMiscCfg; class UNOTOOLS_DLLPUBLIC MiscCfg : public detail::Options { +private: + std::shared_ptr<SfxMiscCfg> m_pImpl; + public: MiscCfg( ); virtual ~MiscCfg( ); |