summaryrefslogtreecommitdiff
path: root/sd/source/ui/presenter/PresenterPreviewCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/presenter/PresenterPreviewCache.cxx')
-rw-r--r--sd/source/ui/presenter/PresenterPreviewCache.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/sd/source/ui/presenter/PresenterPreviewCache.cxx b/sd/source/ui/presenter/PresenterPreviewCache.cxx
index 749e3b694803..da02be8d842d 100644
--- a/sd/source/ui/presenter/PresenterPreviewCache.cxx
+++ b/sd/source/ui/presenter/PresenterPreviewCache.cxx
@@ -87,7 +87,6 @@ PresenterPreviewCache::~PresenterPreviewCache()
//----- XInitialize -----------------------------------------------------------
void SAL_CALL PresenterPreviewCache::initialize (const Sequence<Any>& rArguments)
- throw(Exception, RuntimeException, std::exception)
{
if (rArguments.getLength() != 0)
throw RuntimeException();
@@ -98,7 +97,6 @@ void SAL_CALL PresenterPreviewCache::initialize (const Sequence<Any>& rArguments
void SAL_CALL PresenterPreviewCache::setDocumentSlides (
const Reference<container::XIndexAccess>& rxSlides,
const Reference<XInterface>& rxDocument)
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCacheContext.get()!=nullptr);
@@ -109,7 +107,6 @@ void SAL_CALL PresenterPreviewCache::setDocumentSlides (
void SAL_CALL PresenterPreviewCache::setVisibleRange (
sal_Int32 nFirstVisibleSlideIndex,
sal_Int32 nLastVisibleSlideIndex)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCacheContext.get()!=nullptr);
@@ -119,7 +116,6 @@ void SAL_CALL PresenterPreviewCache::setVisibleRange (
void SAL_CALL PresenterPreviewCache::setPreviewSize (
const css::geometry::IntegerSize2D& rSize)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCache.get()!=nullptr);
@@ -131,7 +127,6 @@ void SAL_CALL PresenterPreviewCache::setPreviewSize (
Reference<rendering::XBitmap> SAL_CALL PresenterPreviewCache::getSlidePreview (
sal_Int32 nSlideIndex,
const Reference<rendering::XCanvas>& rxCanvas)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCacheContext.get()!=nullptr);
@@ -154,7 +149,6 @@ Reference<rendering::XBitmap> SAL_CALL PresenterPreviewCache::getSlidePreview (
void SAL_CALL PresenterPreviewCache::addPreviewCreationNotifyListener (
const Reference<drawing::XSlidePreviewCacheListener>& rxListener)
- throw (css::uno::RuntimeException, std::exception)
{
if (rBHelper.bDisposed || rBHelper.bInDispose)
return;
@@ -164,14 +158,12 @@ void SAL_CALL PresenterPreviewCache::addPreviewCreationNotifyListener (
void SAL_CALL PresenterPreviewCache::removePreviewCreationNotifyListener (
const css::uno::Reference<css::drawing::XSlidePreviewCacheListener>& rxListener)
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
mpCacheContext->RemovePreviewCreationNotifyListener(rxListener);
}
void SAL_CALL PresenterPreviewCache::pause()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCache.get()!=nullptr);
@@ -179,7 +171,6 @@ void SAL_CALL PresenterPreviewCache::pause()
}
void SAL_CALL PresenterPreviewCache::resume()
- throw (css::uno::RuntimeException, std::exception)
{
ThrowIfDisposed();
OSL_ASSERT(mpCache.get()!=nullptr);
@@ -187,7 +178,6 @@ void SAL_CALL PresenterPreviewCache::resume()
}
void PresenterPreviewCache::ThrowIfDisposed()
- throw (css::lang::DisposedException)
{
if (rBHelper.bDisposed || rBHelper.bInDispose)
{