summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-04-16 08:28:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-04-23 08:13:51 +0200
commitcd0a8777019391f515f4bfe6b77ad70fdfeca664 (patch)
tree2a4731ba919ece2cb38bc40760e242a1faf053f2 /include
parentfefca920f474b2eaff93db18169a208a74262f2b (diff)
loplugin:useuniqueptr in DockingWindow
Change-Id: I7a0fec27f50c58f02378a69db5d17c6f5eb62ee2 Reviewed-on: https://gerrit.libreoffice.org/53222 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/dockwin.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx
index d3d792d476a3..905500e8e908 100644
--- a/include/vcl/dockwin.hxx
+++ b/include/vcl/dockwin.hxx
@@ -214,7 +214,7 @@ class VCL_DLLPUBLIC DockingWindow
private:
VclPtr<FloatingWindow> mpFloatWin;
VclPtr<vcl::Window> mpOldBorderWin;
- ImplData* mpImplData;
+ std::unique_ptr<ImplData> mpImplData;
Point maFloatPos;
Point maDockPos;
Point maMouseOff;