diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-07-12 14:29:09 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-07-12 14:29:09 +0000 |
commit | df91eaf4d33006a3318f23d8b9de72cb03c1326e (patch) | |
tree | 9a3d798baa8e2a1787ba026a386141785ae37a92 /sc/source/ui/drawfunc/fusel.cxx | |
parent | e88841a3ac3dcbfd4494a03754ef1de24101751a (diff) |
INTEGRATION: CWS aw013 (1.5.466); FILE MERGED
2004/06/24 09:30:42 aw 1.5.466.1: #i29181#
Diffstat (limited to 'sc/source/ui/drawfunc/fusel.cxx')
-rw-r--r-- | sc/source/ui/drawfunc/fusel.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/drawfunc/fusel.cxx b/sc/source/ui/drawfunc/fusel.cxx index 10b920f63f32..642fcd7cfb8b 100644 --- a/sc/source/ui/drawfunc/fusel.cxx +++ b/sc/source/ui/drawfunc/fusel.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fusel.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: aw $ $Date: 2002-07-18 09:56:19 $ + * last change: $Author: rt $ $Date: 2004-07-12 15:29:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -358,7 +358,7 @@ BOOL __EXPORT FuSelection::MouseButtonUp(const MouseEvent& rMEvt) else if (pView->IsAction() ) { pView->EndAction(); - if ( pView->HasMarkedObj() ) + if ( pView->AreObjectsMarked() ) bReturn = TRUE; } } @@ -388,9 +388,9 @@ BOOL __EXPORT FuSelection::MouseButtonUp(const MouseEvent& rMEvt) USHORT nClicks = rMEvt.GetClicks(); if ( nClicks == 2 && rMEvt.IsLeft() ) { - if ( pView->HasMarkedObj() ) + if ( pView->AreObjectsMarked() ) { - const SdrMarkList& rMarkList = pView->GetMarkList(); + const SdrMarkList& rMarkList = pView->GetMarkedObjectList(); if (rMarkList.GetMarkCount() == 1) { SdrMark* pMark = rMarkList.GetMark(0); |