diff options
author | jp <jp@openoffice.org> | 2001-03-08 20:00:07 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2001-03-08 20:00:07 +0000 |
commit | 136cbbf6a56ef0501ec58e04bea4feab15efd852 (patch) | |
tree | 322e1e088184d61c5a4cc17f33ad2c6ba79a4230 /sc/source/ui/undo/areasave.cxx | |
parent | f7a26cd2501087ac0a358059040acaa4492e2bea (diff) |
change: old data transfer API to the new
Diffstat (limited to 'sc/source/ui/undo/areasave.cxx')
-rw-r--r-- | sc/source/ui/undo/areasave.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/ui/undo/areasave.cxx b/sc/source/ui/undo/areasave.cxx index b3fa06ec5245..16bcb707c76b 100644 --- a/sc/source/ui/undo/areasave.cxx +++ b/sc/source/ui/undo/areasave.cxx @@ -2,9 +2,9 @@ * * $RCSfile: areasave.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: nn $ $Date: 2000-10-30 11:35:45 $ + * last change: $Author: jp $ $Date: 2001-03-08 20:51:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -150,11 +150,11 @@ BOOL ScAreaLinkSaveCollection::IsEqual( const ScDocument* pDoc ) const if (pLinkManager) { USHORT nPos = 0; - const SvBaseLinks& rLinks = pLinkManager->GetLinks(); + const ::so3::SvBaseLinks& rLinks = pLinkManager->GetLinks(); USHORT nLinkCount = rLinks.Count(); for (USHORT i=0; i<nLinkCount; i++) { - SvBaseLink* pBase = *rLinks[i]; + ::so3::SvBaseLink* pBase = *rLinks[i]; if (pBase->ISA(ScAreaLink)) { if ( nPos >= GetCount() || !(*this)[nPos]->IsEqual( *(ScAreaLink*)pBase ) ) @@ -175,11 +175,11 @@ void ScAreaLinkSaveCollection::Restore( ScDocument* pDoc ) const if (pLinkManager) { USHORT nPos = 0; - const SvBaseLinks& rLinks = pLinkManager->GetLinks(); + const ::so3::SvBaseLinks& rLinks = pLinkManager->GetLinks(); USHORT nLinkCount = rLinks.Count(); for (USHORT i=0; i<nLinkCount; i++) { - SvBaseLink* pBase = *rLinks[i]; + ::so3::SvBaseLink* pBase = *rLinks[i]; if (pBase->ISA(ScAreaLink)) { ScAreaLink* pLink = (ScAreaLink*)pBase; @@ -209,11 +209,11 @@ ScAreaLinkSaveCollection* ScAreaLinkSaveCollection::CreateFromDoc( const ScDocum SvxLinkManager* pLinkManager = const_cast<ScDocument*>(pDoc)->GetLinkManager(); if (pLinkManager) { - const SvBaseLinks& rLinks = pLinkManager->GetLinks(); + const ::so3::SvBaseLinks& rLinks = pLinkManager->GetLinks(); USHORT nLinkCount = rLinks.Count(); for (USHORT i=0; i<nLinkCount; i++) { - SvBaseLink* pBase = *rLinks[i]; + ::so3::SvBaseLink* pBase = *rLinks[i]; if (pBase->ISA(ScAreaLink)) { if (!pColl) |