summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-29 21:16:50 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-31 07:45:06 +0000
commit9bfae70fcb91f15ecc0a58a0f5eb3e5f3c8d89d9 (patch)
tree4d695b95f17e5f3fa762af96b1cf80c45eea0fab /include/svl
parent53f9762889f96a5c29e1b414e0b9e2866ad1c2e6 (diff)
tdf#89329: use unique_ptr for pImpl in style
Change-Id: I206f1a7ee5a4020f712a969d26bde9268d9f2c53 Reviewed-on: https://gerrit.libreoffice.org/25636 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/style.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/style.hxx b/include/svl/style.hxx
index a36c3757e096..bbd9c887fc39 100644
--- a/include/svl/style.hxx
+++ b/include/svl/style.hxx
@@ -192,7 +192,7 @@ class SVL_DLLPUBLIC SfxStyleSheetBasePool: public SfxBroadcaster, public comphel
friend class SfxStyleSheetIterator;
friend class SfxStyleSheetBase;
- SfxStyleSheetBasePool_Impl *pImp;
+ std::unique_ptr<SfxStyleSheetBasePool_Impl> pImpl;
protected:
SfxStyleSheetIterator& GetIterator_Impl();