summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorSiqi LIU <me@siqi.fr>2013-08-23 10:40:01 +0800
committerSiqi LIU <me@siqi.fr>2013-08-23 11:18:28 +0800
commiteb0cc3a63d6dade5d54deff91c2845a5a782b6ff (patch)
treeb1384bcbf4efc01c6df5ed09441ee8a80d1f525f /sdext
parente21ad69e8b0bc7b3c5b3a310c3891685d8e4b7a1 (diff)
dummy implementation for getTranslationOffset
Change-Id: Ie1f71ee76af308a6eec9d38e3d629d7d6faf3596
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)