diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-07-25 11:52:00 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-07-25 11:52:00 +0000 |
commit | 5c824f2afd0627be7e87f022c1653dd96d572c15 (patch) | |
tree | caee94867587bb7ca3cf8aa3eca652bc2e002aa9 /svx/source/form | |
parent | e874c65ae78edee5cb422de544ccc59c33e8e852 (diff) |
INTEGRATION: CWS aw035 (1.66.44); FILE MERGED
2006/07/12 15:29:51 aw 1.66.44.1: #126320# SdrMark::GetObj() -> SdrMark::GetSdrObjectFromSdrMark() for unique identification
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/fmshell.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx index 6eb5e39d9931..9e4dddfd1acf 100644 --- a/svx/source/form/fmshell.cxx +++ b/svx/source/form/fmshell.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fmshell.cxx,v $ * - * $Revision: 1.66 $ + * $Revision: 1.67 $ * - * last change: $Author: hr $ $Date: 2006-06-19 15:56:52 $ + * last change: $Author: rt $ $Date: 2006-07-25 12:52:00 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -380,7 +380,7 @@ sal_Bool IsFormComponentList( const SdrMarkList& rMarkList ) SdrObject* pObj; for( sal_uInt32 i=0; i<nMarkCount; ++i ) { - pObj = rMarkList.GetMark(i)->GetObj(); + pObj = rMarkList.GetMark(i)->GetMarkedSdrObj(); if( !IsFormComponent(*pObj) ) return sal_False; } |