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/optctl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui/source/options/optctl.cxx') diff --git a/cui/source/options/optctl.cxx b/cui/source/options/optctl.cxx index ab25dfd141e9..652bba938bf9 100644 --- a/cui/source/options/optctl.cxx +++ b/cui/source/options/optctl.cxx @@ -73,9 +73,9 @@ void SvxCTLOptionsPage::dispose() SfxTabPage::dispose(); } -SfxTabPage* SvxCTLOptionsPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet ) +VclPtr SvxCTLOptionsPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet ) { - return new SvxCTLOptionsPage( pParent, *rAttrSet ); + return VclPtr::Create( pParent, *rAttrSet ); } bool SvxCTLOptionsPage::FillItemSet( SfxItemSet* ) -- cgit