diff options
Diffstat (limited to 'sd/source/ui/presenter')
-rw-r--r-- | sd/source/ui/presenter/PresenterCanvas.cxx | 1 | ||||
-rw-r--r-- | sd/source/ui/presenter/PresenterCanvas.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/presenter/PresenterPreviewCache.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/presenter/PresenterTextView.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/presenter/SlideRenderer.hxx | 3 |
5 files changed, 6 insertions, 4 deletions
diff --git a/sd/source/ui/presenter/PresenterCanvas.cxx b/sd/source/ui/presenter/PresenterCanvas.cxx index 44e7ff77c16a..3848ec6faa9b 100644 --- a/sd/source/ui/presenter/PresenterCanvas.cxx +++ b/sd/source/ui/presenter/PresenterCanvas.cxx @@ -99,6 +99,7 @@ private: geometry::RealPoint2D maPosition; geometry::RealSize2D maSpriteSize; + /// @throws css::lang::DisposedException void ThrowIfDisposed() throw (css::lang::DisposedException); }; diff --git a/sd/source/ui/presenter/PresenterCanvas.hxx b/sd/source/ui/presenter/PresenterCanvas.hxx index 019903755d9f..bfe780df31a4 100644 --- a/sd/source/ui/presenter/PresenterCanvas.hxx +++ b/sd/source/ui/presenter/PresenterCanvas.hxx @@ -371,7 +371,7 @@ private: css::rendering::ViewState MergeViewState (const css::rendering::ViewState& rViewState); - /** This method throws a DisposedException when the object has already been + /** @throws css::lang::DisposedException when the object has already been disposed. */ void ThrowIfDisposed() diff --git a/sd/source/ui/presenter/PresenterPreviewCache.hxx b/sd/source/ui/presenter/PresenterPreviewCache.hxx index 958f5b530997..20af28218214 100644 --- a/sd/source/ui/presenter/PresenterPreviewCache.hxx +++ b/sd/source/ui/presenter/PresenterPreviewCache.hxx @@ -97,7 +97,7 @@ private: std::shared_ptr<PresenterCacheContext> mpCacheContext; std::shared_ptr<sd::slidesorter::cache::PageCache> mpCache; - /** This method throws a DisposedException when the object has already been + /** @throws css::lang::DisposedException when the object has already been disposed. */ void ThrowIfDisposed() throw (css::lang::DisposedException); diff --git a/sd/source/ui/presenter/PresenterTextView.hxx b/sd/source/ui/presenter/PresenterTextView.hxx index 164964860e9c..ab70375b13fc 100644 --- a/sd/source/ui/presenter/PresenterTextView.hxx +++ b/sd/source/ui/presenter/PresenterTextView.hxx @@ -68,7 +68,7 @@ private: class Implementation; std::unique_ptr<Implementation> mpImplementation; - /** This method throws a DisposedException when the object has already been + /** @throws css::lang::DisposedException when the object has already been disposed. */ void ThrowIfDisposed() throw (css::lang::DisposedException); diff --git a/sd/source/ui/presenter/SlideRenderer.hxx b/sd/source/ui/presenter/SlideRenderer.hxx index 6a136680614e..ca7de46f9cd7 100644 --- a/sd/source/ui/presenter/SlideRenderer.hxx +++ b/sd/source/ui/presenter/SlideRenderer.hxx @@ -89,13 +89,14 @@ public: private: PreviewRenderer maPreviewRenderer; + /// @throws css::uno::RuntimeException BitmapEx CreatePreview ( const css::uno::Reference<css::drawing::XDrawPage>& rxSlide, const css::awt::Size& rMaximumPreviewPixelSize, sal_Int16 nSuperSampleFactor) throw (css::uno::RuntimeException, std::exception); - /** This method throws a DisposedException when the object has already been + /** @throws css::lang::DisposedException when the object has already been disposed. */ void ThrowIfDisposed() throw (css::lang::DisposedException); |