diff options
author | Radek Doulik <rodo@novell.com> | 2011-01-05 22:43:00 +0100 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2011-01-05 22:43:00 +0100 |
commit | 07e59117747d8d341164fda1f2078e3225ba1a68 (patch) | |
tree | a1a05d6847d2310db16c273adf8bef3d2908a356 /slideshow/source/engine/slide/slideimpl.cxx | |
parent | 7a435a8fa47604cdea8a89894e75494a1a017cd8 (diff) |
fix shapes rendering order n#656934
- it was broken for master pages containing group shapes
Diffstat (limited to 'slideshow/source/engine/slide/slideimpl.cxx')
-rw-r--r-- | slideshow/source/engine/slide/slideimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/slide/slideimpl.cxx b/slideshow/source/engine/slide/slideimpl.cxx index 3ea925fb976d..690b601c13ad 100644 --- a/slideshow/source/engine/slide/slideimpl.cxx +++ b/slideshow/source/engine/slide/slideimpl.cxx @@ -1140,7 +1140,7 @@ bool SlideImpl::loadShapes() } addPolygons(aMPShapesFunctor.getPolygons()); - nCurrCount = xMasterPageShapes->getCount() + 1; + nCurrCount = aMPShapesFunctor.getImportedShapesCount(); } catch( uno::RuntimeException& ) { |