diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-07-25 11:26:14 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-07-25 11:26:14 +0000 |
commit | 6db3beb10c56f756c7d294563b903babb80406e4 (patch) | |
tree | 6924f646b9af5c8b2fd139be345fa8a9ed54b502 /sc/source/ui/drawfunc/graphsh.cxx | |
parent | 07d40f8efaef0f2d7aae538ebe1178a2c3395923 (diff) |
INTEGRATION: CWS aw035 (1.7.72); FILE MERGED
2006/07/13 15:04:12 aw 1.7.72.1: #126320# SdrMark::GetObj() -> SdrMark::GetMarkedSdrObj() for isolating selection handling
Diffstat (limited to 'sc/source/ui/drawfunc/graphsh.cxx')
-rw-r--r-- | sc/source/ui/drawfunc/graphsh.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/drawfunc/graphsh.cxx b/sc/source/ui/drawfunc/graphsh.cxx index 6e787fa334d4..15a4817e1010 100644 --- a/sc/source/ui/drawfunc/graphsh.cxx +++ b/sc/source/ui/drawfunc/graphsh.cxx @@ -4,9 +4,9 @@ * * $RCSfile: graphsh.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: kz $ $Date: 2006-07-21 13:54:00 $ + * last change: $Author: rt $ $Date: 2006-07-25 12:26:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -107,7 +107,7 @@ void ScGraphicShell::GetFilterState( SfxItemSet& rSet ) if( rMarkList.GetMarkCount() == 1 ) { - SdrObject* pObj = rMarkList.GetMark( 0 )->GetObj(); + SdrObject* pObj = rMarkList.GetMark( 0 )->GetMarkedSdrObj(); if( pObj && pObj->ISA( SdrGrafObj ) && ( ( (SdrGrafObj*) pObj )->GetGraphicType() == GRAPHIC_BITMAP ) ) bEnable = TRUE; @@ -124,7 +124,7 @@ void ScGraphicShell::ExecuteFilter( SfxRequest& rReq ) if( rMarkList.GetMarkCount() == 1 ) { - SdrObject* pObj = rMarkList.GetMark( 0 )->GetObj(); + SdrObject* pObj = rMarkList.GetMark( 0 )->GetMarkedSdrObj(); if( pObj && pObj->ISA( SdrGrafObj ) && ( (SdrGrafObj*) pObj )->GetGraphicType() == GRAPHIC_BITMAP ) { |