summaryrefslogtreecommitdiff
path: root/sd/source/ui/presenter/PresenterPreviewCache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/presenter/PresenterPreviewCache.hxx')
-rw-r--r--sd/source/ui/presenter/PresenterPreviewCache.hxx29
1 files changed, 10 insertions, 19 deletions
diff --git a/sd/source/ui/presenter/PresenterPreviewCache.hxx b/sd/source/ui/presenter/PresenterPreviewCache.hxx
index 20af28218214..9c611dc72744 100644
--- a/sd/source/ui/presenter/PresenterPreviewCache.hxx
+++ b/sd/source/ui/presenter/PresenterPreviewCache.hxx
@@ -52,44 +52,35 @@ public:
/** Accepts no arguments. All values that are necessary to set up a
preview cache can be provided via methods.
*/
- 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;
// XSlidePreviewCache
virtual void SAL_CALL setDocumentSlides (
const css::uno::Reference<css::container::XIndexAccess>& rxSlides,
- const css::uno::Reference<css::uno::XInterface>& rxDocument)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference<css::uno::XInterface>& rxDocument) override;
virtual void SAL_CALL setVisibleRange (
sal_Int32 nFirstVisibleSlideIndex,
- sal_Int32 nLastVisibleSlideIndex)
- throw (css::uno::RuntimeException, std::exception) override;
+ sal_Int32 nLastVisibleSlideIndex) override;
virtual void SAL_CALL setPreviewSize (
- const css::geometry::IntegerSize2D& rSize)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::geometry::IntegerSize2D& rSize) override;
virtual css::uno::Reference<css::rendering::XBitmap> SAL_CALL
getSlidePreview (
sal_Int32 nSlideIndex,
- 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 void SAL_CALL addPreviewCreationNotifyListener (
- const css::uno::Reference<css::drawing::XSlidePreviewCacheListener>& rxListener)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference<css::drawing::XSlidePreviewCacheListener>& rxListener) override;
virtual void SAL_CALL removePreviewCreationNotifyListener (
- const css::uno::Reference<css::drawing::XSlidePreviewCacheListener>& rxListener)
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference<css::drawing::XSlidePreviewCacheListener>& rxListener) override;
- virtual void SAL_CALL pause()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL pause() override;
- virtual void SAL_CALL resume()
- throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL resume() override;
private:
class PresenterCacheContext;
@@ -100,7 +91,7 @@ private:
/** @throws css::lang::DisposedException when the object has already been
disposed.
*/
- void ThrowIfDisposed() throw (css::lang::DisposedException);
+ void ThrowIfDisposed();
};
} } // end of namespace ::sd::presenter