diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-05-22 15:18:00 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-22 17:59:07 +0000 |
commit | 5e32815a1d9d8591fcd0a4f31f3f6337a69c7505 (patch) | |
tree | 3d5f02b472a6e9b9a6a2720e97f1f2ade2e33d77 /include/sfx2 | |
parent | 7a7f49a734aaaae0e5fe3a4f54914b01fb0d511f (diff) |
tdf#89329: use unique_ptr for pImpl in docfile
Change-Id: Ib073dd45dae3f26d4528288e83d53122102866de
Reviewed-on: https://gerrit.libreoffice.org/25306
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/docfile.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx index 487d3c36b775..ee92f8da0800 100644 --- a/include/sfx2/docfile.hxx +++ b/include/sfx2/docfile.hxx @@ -57,7 +57,7 @@ class DateTime; class SFX2_DLLPUBLIC SfxMedium : public SvRefBase { - SfxMedium_Impl* pImp; + std::unique_ptr< SfxMedium_Impl > pImpl; SAL_DLLPRIVATE void SetIsRemote_Impl(); SAL_DLLPRIVATE void CloseInStream_Impl(); |