diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-26 01:42:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-26 07:43:21 +0000 |
commit | 832c9b7b9107ca2f2a85dbf4e0e42a4c2b62a174 (patch) | |
tree | 4fad1213f2d6bb1f2bf8798be5121c671ce4dd96 /include | |
parent | bb694dfef762327a5446338aa1a1ad23ed8970ed (diff) |
tdf#89329: use unique_ptr for pImpl in svlbitm
Change-Id: If047546c953a5f3bf7af3f99fb7f9d604e0bdba8
Reviewed-on: https://gerrit.libreoffice.org/25476
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/svlbitm.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/svlbitm.hxx b/include/svtools/svlbitm.hxx index 516e2311fdd5..06b3a40e33c7 100644 --- a/include/svtools/svlbitm.hxx +++ b/include/svtools/svlbitm.hxx @@ -241,7 +241,7 @@ struct SvLBoxContextBmp_Impl; class SVT_DLLPUBLIC SvLBoxContextBmp : public SvLBoxItem { - SvLBoxContextBmp_Impl* m_pImpl; + std::unique_ptr<SvLBoxContextBmp_Impl> m_pImpl; public: SvLBoxContextBmp(Image aBmp1, Image aBmp2, |