summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.cxx7
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.hxx3
2 files changed, 10 insertions, 0 deletions
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<util::XModifyListener>& 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)