summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/drawvie3.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-07-25 11:26:48 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-07-25 11:26:48 +0000
commitfb97531635d619389c917cfe26519dcee96973b4 (patch)
treee51617ab868a3672afa661aaad36e801ce6db7a2 /sc/source/ui/view/drawvie3.cxx
parent11e15b9c5ecd6c41926729b4f61864103919c73c (diff)
INTEGRATION: CWS aw035 (1.7.224); FILE MERGED
2006/07/13 15:04:13 aw 1.7.224.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling
Diffstat (limited to 'sc/source/ui/view/drawvie3.cxx')
-rw-r--r--sc/source/ui/view/drawvie3.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/drawvie3.cxx b/sc/source/ui/view/drawvie3.cxx
index 58cc1dde8696..b0f8dbdeb24f 100644
--- a/sc/source/ui/view/drawvie3.cxx
+++ b/sc/source/ui/view/drawvie3.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: drawvie3.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 14:53:35 $
+ * last change: $Author: rt $ $Date: 2006-07-25 12:26:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -99,7 +99,7 @@ void ScDrawView::SetAnchor( ScAnchorType eType )
ULONG nCount = pMark->GetMarkCount();
for( ULONG i=0; i<nCount; i++ )
{
- pObj = pMark->GetMark(i)->GetObj();
+ pObj = pMark->GetMark(i)->GetMarkedSdrObj();
ScDrawLayer::SetAnchor( pObj, eType );
}
@@ -120,7 +120,7 @@ ScAnchorType ScDrawView::GetAnchor() const
Point p0;
for( ULONG i=0; i<nCount; i++ )
{
- pObj = pMark->GetMark(i)->GetObj();
+ pObj = pMark->GetMark(i)->GetMarkedSdrObj();
if( ScDrawLayer::GetAnchor( pObj ) == SCA_CELL )
bCell =TRUE;
else