summaryrefslogtreecommitdiff
path: root/sd/source/ui/presenter/SlideRenderer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/presenter/SlideRenderer.cxx')
-rw-r--r--sd/source/ui/presenter/SlideRenderer.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/sd/source/ui/presenter/SlideRenderer.cxx b/sd/source/ui/presenter/SlideRenderer.cxx
index b0a6f088efea..f00cff827f4b 100644
--- a/sd/source/ui/presenter/SlideRenderer.cxx
+++ b/sd/source/ui/presenter/SlideRenderer.cxx
@@ -52,7 +52,6 @@ void SAL_CALL SlideRenderer::disposing()
//----- XInitialization -------------------------------------------------------
void SAL_CALL SlideRenderer::initialize (const Sequence<Any>& rArguments)
- throw (Exception, RuntimeException, std::exception)
{
ThrowIfDisposed();
@@ -64,19 +63,16 @@ void SAL_CALL SlideRenderer::initialize (const Sequence<Any>& rArguments)
}
OUString SlideRenderer::getImplementationName()
- throw (css::uno::RuntimeException, std::exception)
{
return OUString("com.sun.star.comp.Draw.SlideRenderer");
}
sal_Bool SlideRenderer::supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, ServiceName);
}
css::uno::Sequence<OUString> SlideRenderer::getSupportedServiceNames()
- throw (css::uno::RuntimeException, std::exception)
{
return css::uno::Sequence<OUString>{"com.sun.star.drawing.SlideRenderer"};
}
@@ -87,7 +83,6 @@ Reference<awt::XBitmap> SlideRenderer::createPreview (
const Reference<drawing::XDrawPage>& rxSlide,
const awt::Size& rMaximalSize,
sal_Int16 nSuperSampleFactor)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
SolarMutexGuard aGuard;
@@ -101,7 +96,6 @@ Reference<rendering::XBitmap> SlideRenderer::createPreviewForCanvas (
const awt::Size& rMaximalSize,
sal_Int16 nSuperSampleFactor,
const Reference<rendering::XCanvas>& rxCanvas)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
SolarMutexGuard aGuard;
@@ -119,7 +113,6 @@ Reference<rendering::XBitmap> SlideRenderer::createPreviewForCanvas (
awt::Size SAL_CALL SlideRenderer::calculatePreviewSize (
double nSlideAspectRatio,
const awt::Size& rMaximalSize)
- throw (css::uno::RuntimeException, std::exception)
{
if (rMaximalSize.Width <= 0
|| rMaximalSize.Height <= 0
@@ -143,8 +136,6 @@ BitmapEx SlideRenderer::CreatePreview (
const Reference<drawing::XDrawPage>& rxSlide,
const awt::Size& rMaximalSize,
sal_Int16 nSuperSampleFactor)
- throw (css::uno::RuntimeException,
- std::exception)
{
const SdPage* pPage = SdPage::getImplementation(rxSlide);
if (pPage == nullptr)
@@ -198,7 +189,6 @@ BitmapEx SlideRenderer::CreatePreview (
}
void SlideRenderer::ThrowIfDisposed()
- throw (css::lang::DisposedException)
{
if (SlideRendererInterfaceBase::rBHelper.bDisposed || SlideRendererInterfaceBase::rBHelper.bInDispose)
{