diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-06-06 01:00:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-07 06:59:10 +0000 |
commit | 082d46908533dc254018fa8f5d517b025bb2fca4 (patch) | |
tree | 8d8797650e9e61fcf45c83de9da18deaccf3905a /include | |
parent | a5e7c9ca89c5bf5664a687650ce0a94d7764e2b8 (diff) |
tdf#89329: use unique_ptr for pImpl in svdoole2
Change-Id: Ie189576336e0670102d7675b59f30e3fc357671d
Reviewed-on: https://gerrit.libreoffice.org/25942
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdoole2.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/svdoole2.hxx b/include/svx/svdoole2.hxx index cd21df9241b4..39c7507df7be 100644 --- a/include/svx/svdoole2.hxx +++ b/include/svx/svdoole2.hxx @@ -44,7 +44,7 @@ class SdrOle2ObjImpl; class SVX_DLLPUBLIC SdrOle2Obj : public SdrRectObj { private: - SdrOle2ObjImpl* mpImpl; + std::unique_ptr<SdrOle2ObjImpl> mpImpl; private: SVX_DLLPRIVATE void Connect_Impl(); |