summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/sdview5.cxx
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-06-25 11:01:52 +0100
committerNoel Power <noel.power@suse.com>2013-06-25 11:01:52 +0100
commit90ffe25cdda7f7922ea7def4a5bf99ff1671b0d3 (patch)
treeb370fe9b7af71abc357b540e5878b2bd17d16f35 /sd/source/ui/view/sdview5.cxx
parent69dcacedaccd1d698a54eed615ee8739747bc975 (diff)
remove unwanted files added with ee51444ed1f7003dafc93c8181b5f8c1b0fd165b
<sigh> added some files that were part of a patch that I was testing were not intended as part of commit Change-Id: I34ed7f55de28fa09739c0dd8d5084824de676477
Diffstat (limited to 'sd/source/ui/view/sdview5.cxx')
-rw-r--r--sd/source/ui/view/sdview5.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/view/sdview5.cxx b/sd/source/ui/view/sdview5.cxx
index 3cb082970873..9023d028ad49 100644
--- a/sd/source/ui/view/sdview5.cxx
+++ b/sd/source/ui/view/sdview5.cxx
@@ -101,10 +101,9 @@ SdrObject* View::GetEmptyPresentationObject( PresObjKind eKind )
// last try to find empty pres obj of multiple type
if( !pEmptyObj )
{
- ShapeList& rShapeList = pPage->GetPresentationShapeList();
+ const std::list< SdrObject* >& rShapes = pPage->GetPresentationShapeList().getList();
- for( ShapeList::const_iterator iter( rShapeList.cbegin() );
- iter != rShapeList.cend(); ++iter )
+ for( std::list< SdrObject* >::const_iterator iter( rShapes.begin() ); iter != rShapes.end(); ++iter )
{
if( (*iter)->IsEmptyPresObj() && implIsMultiPresObj(pPage->GetPresObjKind(*iter)) )
{