From d90dd20d93ae03646064fe8f647b7fb528248a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Tue, 25 Jul 2006 10:32:32 +0000 Subject: [PATCH] INTEGRATION: CWS aw035 (1.9.26); FILE MERGED 2006/07/13 16:05:13 aw 1.9.26.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling --- sd/source/ui/func/fucopy.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx index 4880144802ba..1258533504c4 100644 --- a/sd/source/ui/func/fucopy.cxx +++ b/sd/source/ui/func/fucopy.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fucopy.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2006-06-19 12:32:18 $ + * last change: $Author: rt $ $Date: 2006-07-25 11:32:32 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -277,7 +277,7 @@ void FuCopy::DoExecute( SfxRequest& rReq ) // set protection flags at marked copies to null for( j = 0; j < nCopyMarkCount; j++ ) { - pObj = aCopyMarkList.GetMark( j )->GetObj(); + pObj = aCopyMarkList.GetMark( j )->GetMarkedSdrObj(); if( pObj ) { @@ -303,8 +303,8 @@ void FuCopy::DoExecute( SfxRequest& rReq ) { for( j = 0; j < nMarkCount; j++ ) { - SdrObject* pSrcObj = aMarkList.GetMark( j )->GetObj(); - SdrObject* pDstObj = aCopyMarkList.GetMark( j )->GetObj(); + SdrObject* pSrcObj = aMarkList.GetMark( j )->GetMarkedSdrObj(); + SdrObject* pDstObj = aCopyMarkList.GetMark( j )->GetMarkedSdrObj(); if( pSrcObj && pDstObj && ( pSrcObj->GetObjInventor() == pDstObj->GetObjInventor() ) &&