summaryrefslogtreecommitdiff
path: root/sd/source/ui/presenter/SlideRenderer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/presenter/SlideRenderer.hxx')
-rw-r--r--sd/source/ui/presenter/SlideRenderer.hxx26
1 files changed, 9 insertions, 17 deletions
diff --git a/sd/source/ui/presenter/SlideRenderer.hxx b/sd/source/ui/presenter/SlideRenderer.hxx
index ca7de46f9cd7..5e0ad57d7dc2 100644
--- a/sd/source/ui/presenter/SlideRenderer.hxx
+++ b/sd/source/ui/presenter/SlideRenderer.hxx
@@ -54,37 +54,30 @@ public:
// XInitialization
- virtual void SAL_CALL initialize (const css::uno::Sequence<css::uno::Any>& rArguments)
- throw (css::uno::Exception, css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL initialize (const css::uno::Sequence<css::uno::Any>& rArguments) override;
- OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) override;
+ OUString SAL_CALL getImplementationName() override;
- sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException, std::exception) override;
+ sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
- css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception) override;
+ css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
// XSlideRenderer
virtual css::uno::Reference<css::awt::XBitmap> SAL_CALL createPreview (
const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
- sal_Int16 nSuperSampleFactor)
- throw (css::uno::RuntimeException, std::exception) override;
+ sal_Int16 nSuperSampleFactor) override;
virtual css::uno::Reference<css::rendering::XBitmap> SAL_CALL createPreviewForCanvas (
const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
sal_Int16 nSuperSampleFactor,
- const css::uno::Reference<css::rendering::XCanvas>& rxCanvas)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference<css::rendering::XCanvas>& rxCanvas) override;
virtual css::awt::Size SAL_CALL calculatePreviewSize (
double nSlideAspectRatio,
- const css::awt::Size& rMaximumPreviewPixelSize)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::awt::Size& rMaximumPreviewPixelSize) override;
private:
PreviewRenderer maPreviewRenderer;
@@ -93,13 +86,12 @@ private:
BitmapEx CreatePreview (
const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
- sal_Int16 nSuperSampleFactor)
- throw (css::uno::RuntimeException, std::exception);
+ sal_Int16 nSuperSampleFactor);
/** @throws css::lang::DisposedException when the object has already been
disposed.
*/
- void ThrowIfDisposed() throw (css::lang::DisposedException);
+ void ThrowIfDisposed();
};
} } // end of namespace ::sd::presenter