diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 14:46:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-18 08:35:34 +0200 |
commit | 0d62716f67b6269448eeae1f012f9512b503f390 (patch) | |
tree | b390a03fed77b2bee5045f27d0609df1b863d92f /include/svl/stylepool.hxx | |
parent | f43db673558a1139fba783973c87de9b79033425 (diff) |
use unique_ptr for pImpl in svl/
Change-Id: Ieef897314ac0f056c0a09a5182ca59800fd58f41
Diffstat (limited to 'include/svl/stylepool.hxx')
-rw-r--r-- | include/svl/stylepool.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/stylepool.hxx b/include/svl/stylepool.hxx index f12528ad56c4..93caa6aea0f9 100644 --- a/include/svl/stylepool.hxx +++ b/include/svl/stylepool.hxx @@ -29,7 +29,7 @@ class IStylePoolIteratorAccess; class SVL_DLLPUBLIC StylePool { private: - StylePoolImpl *pImpl; + std::unique_ptr<StylePoolImpl> pImpl; public: typedef std::shared_ptr<SfxItemSet> SfxItemSet_Pointer_t; |