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/optsave.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'cui/source/options/optsave.cxx') diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx index a8a9280b7dd3..a57f3e0dca35 100644 --- a/cui/source/options/optsave.cxx +++ b/cui/source/options/optsave.cxx @@ -226,13 +226,12 @@ void SvxSaveTabPage::dispose() SfxTabPage::dispose(); } -SfxTabPage* SfxSaveTabPage::Create( vcl::Window* pParent, - const SfxItemSet* rAttrSet ) +VclPtr SfxSaveTabPage::Create( vcl::Window* pParent, + const SfxItemSet* rAttrSet ) { - return ( new SfxSaveTabPage( pParent, *rAttrSet ) ); + return VclPtr::Create( pParent, *rAttrSet ); } - void SfxSaveTabPage::DetectHiddenControls() { SvtOptionsDialogOptions aOptionsDlgOpt; -- cgit