From eb0cc3a63d6dade5d54deff91c2845a5a782b6ff Mon Sep 17 00:00:00 2001 From: Siqi LIU Date: Fri, 23 Aug 2013 10:40:01 +0800 Subject: dummy implementation for getTranslationOffset Change-Id: Ie1f71ee76af308a6eec9d38e3d629d7d6faf3596 --- sdext/source/presenter/PresenterSlideShowView.cxx | 7 +++++++ sdext/source/presenter/PresenterSlideShowView.hxx | 3 +++ 2 files changed, 10 insertions(+) (limited to 'sdext') diff --git a/sdext/source/presenter/PresenterSlideShowView.cxx b/sdext/source/presenter/PresenterSlideShowView.cxx index 1a663fcf036a..2dbf3e76ebc5 100644 --- a/sdext/source/presenter/PresenterSlideShowView.cxx +++ b/sdext/source/presenter/PresenterSlideShowView.cxx @@ -378,6 +378,13 @@ geometry::AffineMatrix2D SAL_CALL PresenterSlideShowView::getTransformation (voi } } +geometry::IntegerSize2D SAL_CALL PresenterSlideShowView::getTranslationOffset(void) + throw (RuntimeException) +{ + ThrowIfDisposed(); + return geometry::IntegerSize2D(0,0); +} + void SAL_CALL PresenterSlideShowView::addTransformationChangedListener( const Reference& rxListener) throw (RuntimeException) diff --git a/sdext/source/presenter/PresenterSlideShowView.hxx b/sdext/source/presenter/PresenterSlideShowView.hxx index a392842d2e99..fc66fe34144a 100644 --- a/sdext/source/presenter/PresenterSlideShowView.hxx +++ b/sdext/source/presenter/PresenterSlideShowView.hxx @@ -90,6 +90,9 @@ public: virtual css::geometry::AffineMatrix2D SAL_CALL getTransformation (void) throw (css::uno::RuntimeException); + virtual ::com::sun::star::geometry::IntegerSize2D SAL_CALL getTranslationOffset(void) + throw (css::uno::RuntimeException); + virtual void SAL_CALL addTransformationChangedListener( const css::uno::Reference< css::util::XModifyListener >& xListener) -- cgit