summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/slide/layermanager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/slide/layermanager.cxx')
-rw-r--r--slideshow/source/engine/slide/layermanager.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/slideshow/source/engine/slide/layermanager.cxx b/slideshow/source/engine/slide/layermanager.cxx
index f6b1e4ad4632..f4fdf98f394b 100644
--- a/slideshow/source/engine/slide/layermanager.cxx
+++ b/slideshow/source/engine/slide/layermanager.cxx
@@ -608,9 +608,10 @@ namespace slideshow
return true; // visible on all views
}
- virtual css::uno::Reference< css::rendering::XCanvas > getCanvas() const
+ virtual const Canvas& getCanvas() const
{
- return mpCanvas;
+ // TODO-NYI
+ //return mpCanvas;
}
virtual void clear() const
@@ -659,6 +660,12 @@ namespace slideshow
OSL_FAIL( "BitmapView::setClip(): This method is not supposed to be called!" );
}
+ virtual basegfx::B2DPolyPolygon getClip() const
+ {
+ OSL_FAIL( "BitmapView::getClip(): This method is not supposed to be called!" );
+ return basegfx::B2DPolyPolygon();
+ }
+
virtual bool resize( const ::basegfx::B2DRange& /*rArea*/ )
{
OSL_FAIL( "BitmapView::resize(): This method is not supposed to be called!" );