diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-05-20 13:39:46 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-05-20 13:39:46 +0000 |
commit | 46248ece7b511d414773c05c7d7897cbf7fd20c4 (patch) | |
tree | 9356519bc69d97eeaf38e61f2197a2a70e007977 /svx | |
parent | e9e9f9b747bb531dc53c5297b056de5840317347 (diff) |
INTEGRATION: CWS tbe33_DEV300 (1.32.100); FILE MERGED
2008/05/13 14:08:08 tbe 1.32.100.1: #i88352# Updating calc file with multiple DDE-Links leads to runtime error!
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svxlink/linkmgr.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svxlink/linkmgr.cxx b/svx/source/svxlink/linkmgr.cxx index ed9c819f1bd4..215eb746003a 100644 --- a/svx/source/svxlink/linkmgr.cxx +++ b/svx/source/svxlink/linkmgr.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: linkmgr.cxx,v $ - * $Revision: 1.33 $ + * $Revision: 1.34 $ * * This file is part of OpenOffice.org. * @@ -301,7 +301,7 @@ BOOL SvxInternalLink::Connect( sfx2::SvBaseLink* pLink ) if ( !pShell ) { bFirst = FALSE; - pShell = SfxObjectShell::GetFirst( &aType ); + pShell = SfxObjectShell::GetFirst( &aType, sal_False ); } while( pShell ) @@ -323,10 +323,10 @@ BOOL SvxInternalLink::Connect( sfx2::SvBaseLink* pLink ) if( bFirst ) { bFirst = FALSE; - pShell = SfxObjectShell::GetFirst( &aType ); + pShell = SfxObjectShell::GetFirst( &aType, sal_False ); } else - pShell = SfxObjectShell::GetNext( *pShell, &aType ); + pShell = SfxObjectShell::GetNext( *pShell, &aType, sal_False ); sTmp.Erase(); } |