summaryrefslogtreecommitdiff
path: root/include/sfx2/frame.hxx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-05-22 15:29:44 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-22 16:42:02 +0000
commit20d38addcdd6e4dccd78f2f7ee18ab45a26dd7ed (patch)
tree1abef35e97faf98ea15939885f6ebe9a804173c9 /include/sfx2/frame.hxx
parentd374786a67372e88a226ac5aa04898d538b04f7c (diff)
tdf#89329: use unique_ptr for pImpl in frame
Change-Id: I34256941b366e0a3d7c78818b6e8576f4a5669a2 Reviewed-on: https://gerrit.libreoffice.org/25309 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2/frame.hxx')
-rw-r--r--include/sfx2/frame.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/frame.hxx b/include/sfx2/frame.hxx
index 19a8656c2faa..fcd933010874 100644
--- a/include/sfx2/frame.hxx
+++ b/include/sfx2/frame.hxx
@@ -97,7 +97,7 @@ class SFX2_DLLPUBLIC SfxFrame : public SvCompatWeakBase<SfxFrame>
private:
SfxFrame* pParentFrame;
SfxFrameArr_Impl* pChildArr;
- SfxFrame_Impl* pImp;
+ std::unique_ptr< SfxFrame_Impl > pImpl;
VclPtr<vcl::Window> pWindow;
protected: