From ee28d75d495c9e115397e0825b14bd3cbf67d5f3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 4 Jun 2018 14:30:16 +0200 Subject: loplugin:useuniqueptr in Svx3DWin Change-Id: I529a486b7b60306293089b776202810f84ab0126 Reviewed-on: https://gerrit.libreoffice.org/55516 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svx/float3d.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/svx/float3d.hxx b/include/svx/float3d.hxx index b79255a67b5d..7529fddec56a 100644 --- a/include/svx/float3d.hxx +++ b/include/svx/float3d.hxx @@ -170,14 +170,14 @@ private: ViewType3D eViewType; // Model, Page, View etc. for favourites - FmFormModel* pModel; + std::unique_ptr pModel; VclPtr pVDev; SfxBindings* pBindings; - Svx3DCtrlItem* pControllerItem; + std::unique_ptr pControllerItem; - SvxConvertTo3DItem* pConvertTo3DItem; - SvxConvertTo3DItem* pConvertTo3DLatheItem; + std::unique_ptr pConvertTo3DItem; + std::unique_ptr pConvertTo3DLatheItem; std::unique_ptr mpImpl; MapUnit ePoolUnit; -- cgit