From 85b01322b6384ae13818c22659b99bfcc94e06fe Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Fri, 17 Apr 2015 13:51:33 +0100 Subject: Fix SfxTabPage creation to use VclPtr. Change-Id: Ia0e8b666daec7b5eaba119c758b9ca1ec8276128 --- cui/source/options/optopencl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui/source/options/optopencl.cxx') diff --git a/cui/source/options/optopencl.cxx b/cui/source/options/optopencl.cxx index c98ce9a4a76b..e83dcde59a61 100644 --- a/cui/source/options/optopencl.cxx +++ b/cui/source/options/optopencl.cxx @@ -136,9 +136,9 @@ void SvxOpenCLTabPage::dispose() SfxTabPage::dispose(); } -SfxTabPage* SvxOpenCLTabPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet ) +VclPtr SvxOpenCLTabPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet ) { - return new SvxOpenCLTabPage(pParent, *rAttrSet); + return VclPtr::Create(pParent, *rAttrSet); } bool SvxOpenCLTabPage::FillItemSet( SfxItemSet* ) -- cgit