summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwshb.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-07-25 11:27:39 +0000
committerRüdiger Timm <rt@openoffice.org>2006-07-25 11:27:39 +0000
commit2b251c93b93ab7277c4ba43e1855472d42c81f2f (patch)
treed09dc48b8185fa8a63d401906a6d24bebce2d569 /sc/source/ui/view/tabvwshb.cxx
parentf53a21a431086cb2cd50c8f40ec85559f2d59567 (diff)
INTEGRATION: CWS aw035 (1.28.70); FILE MERGED
2006/07/13 15:04:14 aw 1.28.70.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling
Diffstat (limited to 'sc/source/ui/view/tabvwshb.cxx')
-rw-r--r--sc/source/ui/view/tabvwshb.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/tabvwshb.cxx b/sc/source/ui/view/tabvwshb.cxx
index 746cf5a0a01a..6d2ae58eb51a 100644
--- a/sc/source/ui/view/tabvwshb.cxx
+++ b/sc/source/ui/view/tabvwshb.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tabvwshb.cxx,v $
*
- * $Revision: 1.29 $
+ * $Revision: 1.30 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 15:16:42 $
+ * last change: $Author: rt $ $Date: 2006-07-25 12:27:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -287,7 +287,7 @@ ErrCode __EXPORT ScTabViewShell::DoVerb(long nVerb)
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
if (rMarkList.GetMarkCount() == 1)
{
- pObj = rMarkList.GetMark(0)->GetObj();
+ pObj = rMarkList.GetMark(0)->GetMarkedSdrObj();
if (pObj->GetObjIdentifier() == OBJ_OLE2)
pOle2Obj = (SdrOle2Obj*) pObj;
else if (pObj->GetObjIdentifier() == OBJ_GRAF)
@@ -391,7 +391,7 @@ void ScTabViewShell::ExecDrawIns(SfxRequest& rReq)
if (rMarkList.GetMarkCount() == 1)
{
SdrMark* pMark = rMarkList.GetMark(0);
- SdrObject* pObj = pMark->GetObj();
+ SdrObject* pObj = pMark->GetMarkedSdrObj();
UINT16 nSdrObjKind = pObj->GetObjIdentifier();