summaryrefslogtreecommitdiff
path: root/include/sfx2/frmdescr.hxx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-22 15:37:58 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-23 13:11:28 +0000
commitfb5b0f59b9c923f235eb40b5cef69f8e9a1d9eeb (patch)
tree103f1ca981ce9f290c4a44f412b9d78a0176c4dc /include/sfx2/frmdescr.hxx
parent58544f07e133356d6109dab8a7d1168c91289cfe (diff)
tdf#89329: use unique_ptr for pImpl in frmdescr
Change-Id: I337e1ee34fe1571ca75c8ff8762b5d43fecc2cb4 Reviewed-on: https://gerrit.libreoffice.org/25310 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2/frmdescr.hxx')
-rw-r--r--include/sfx2/frmdescr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx
index ae28c0ea5254..dfec93dc57b1 100644
--- a/include/sfx2/frmdescr.hxx
+++ b/include/sfx2/frmdescr.hxx
@@ -79,7 +79,7 @@ class SFX2_DLLPUBLIC SfxFrameDescriptor
bool bResizeVertical;
bool bHasUI;
bool bReadOnly;
- SfxFrameDescriptor_Impl* pImp;
+ std::unique_ptr< SfxFrameDescriptor_Impl > pImpl;
public:
SfxFrameDescriptor();