From 9afcf6db223992dccbb28b6730849ab1cc512c50 Mon Sep 17 00:00:00 2001 From: Christian Lippka Date: Wed, 14 Mar 2001 08:55:52 +0000 Subject: #84040# call OwnerLock(FALSE) --- svx/source/dialog/hldocntp.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'svx') diff --git a/svx/source/dialog/hldocntp.cxx b/svx/source/dialog/hldocntp.cxx index e96174019129..e908a8600c9b 100644 --- a/svx/source/dialog/hldocntp.cxx +++ b/svx/source/dialog/hldocntp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: hldocntp.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: cl $ $Date: 2001-02-12 15:12:27 $ + * last change: $Author: cl $ $Date: 2001-03-14 09:55:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -608,7 +608,9 @@ void SvxHyperlinkNewDocTp::DoApply () if ( pViewFrame && maRbtEditLater.IsChecked() ) { - BOOL bResult = pViewFrame->GetObjectShell()->DoClose(); + SfxObjectShell* pObjShell = pViewFrame->GetObjectShell(); + pObjShell->OwnerLock(FALSE); + BOOL bResult = pObjShell->DoClose(); } LeaveWait(); -- cgit