dummy implementation for getTranslationOffset
Change-Id: Ie1f71ee76af308a6eec9d38e3d629d7d6faf3596
This commit is contained in:
parent
e21ad69e8b
commit
eb0cc3a63d
2 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue