summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/View.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-22 14:35:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-25 17:03:22 +0200
commiteb2a4fb53b92aaf9bef51748f75bbf82e071a0dc (patch)
tree896909e37f93b24d3931d0bb1cafdecee37db7a2 /sd/source/ui/inc/View.hxx
parent3a8ae607cb0e63f252ca5a3b224f479cf304dc3f (diff)
loplugin:useuniqueptr in sd::View
Change-Id: I8902a792d9dc1ba2bc50a53c10a387f34af50307 Reviewed-on: https://gerrit.libreoffice.org/56339 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/inc/View.hxx')
-rw-r--r--sd/source/ui/inc/View.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/inc/View.hxx b/sd/source/ui/inc/View.hxx
index 962b6d43f56e..188788667839 100644
--- a/sd/source/ui/inc/View.hxx
+++ b/sd/source/ui/inc/View.hxx
@@ -238,9 +238,9 @@ protected:
SdDrawDocument& mrDoc;
DrawDocShell* mpDocSh;
ViewShell* mpViewSh;
- SdrMarkList* mpDragSrcMarkList;
+ std::unique_ptr<SdrMarkList> mpDragSrcMarkList;
SdrObject* mpDropMarkerObj;
- SdrDropMarkerOverlay* mpDropMarker;
+ std::unique_ptr<SdrDropMarkerOverlay> mpDropMarker;
sal_uInt16 mnDragSrcPgNum;
Point maDropPos;
::std::vector<OUString> maDropFileVector;