summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:51:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:14 +0100
commit920f1dd4a77b887f79a24b76adf0d25f00551056 (patch)
tree04e53aa3203c1877a1d0490f743f8e6ac37d11a1 /sdext
parent5fb6c73d3037d9f860212ecb06b99fdc34bb6dcc (diff)
New loplugin:dynexcspec: Add @throws documentation, sdext
Change-Id: Id01b4012d2ac3cf479a96ed496eff3d97e5c80c5
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/minimizer/pppoptimizerdialog.hxx1
-rw-r--r--sdext/source/minimizer/unodialog.hxx1
-rw-r--r--sdext/source/presenter/PresenterAccessibility.cxx1
-rw-r--r--sdext/source/presenter/PresenterButton.hxx1
-rw-r--r--sdext/source/presenter/PresenterHelpView.hxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBase.hxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBorderPainter.hxx1
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.hxx1
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.hxx1
-rw-r--r--sdext/source/presenter/PresenterSlidePreview.hxx2
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.hxx2
-rw-r--r--sdext/source/presenter/PresenterSlideSorter.hxx2
-rw-r--r--sdext/source/presenter/PresenterToolBar.hxx2
-rw-r--r--sdext/source/presenter/PresenterViewFactory.hxx1
-rw-r--r--sdext/source/presenter/PresenterWindowManager.hxx1
15 files changed, 15 insertions, 6 deletions
diff --git a/sdext/source/minimizer/pppoptimizerdialog.hxx b/sdext/source/minimizer/pppoptimizerdialog.hxx
index 1ff64ea583f7..b0e2ce757d82 100644
--- a/sdext/source/minimizer/pppoptimizerdialog.hxx
+++ b/sdext/source/minimizer/pppoptimizerdialog.hxx
@@ -90,6 +90,7 @@ public:
OUString PPPOptimizerDialog_getImplementationName();
css::uno::Sequence< OUString > PPPOptimizerDialog_getSupportedServiceNames();
+/// @throws css::uno::Exception
css::uno::Reference< css::uno::XInterface > PPPOptimizerDialog_createInstance( const css::uno::Reference< css::uno::XComponentContext > & rSMgr )
throw( css::uno::Exception );
diff --git a/sdext/source/minimizer/unodialog.hxx b/sdext/source/minimizer/unodialog.hxx
index 9ae526ec6351..a2eafd4062d2 100644
--- a/sdext/source/minimizer/unodialog.hxx
+++ b/sdext/source/minimizer/unodialog.hxx
@@ -60,6 +60,7 @@ public:
void execute();
void endExecute( bool bStatus );
+ /// @throws css::uno::Exception
css::uno::Reference< css::awt::XWindowPeer > createWindowPeer( css::uno::Reference< css::awt::XWindowPeer > const & xParentPeer )
throw ( css::uno::Exception );
diff --git a/sdext/source/presenter/PresenterAccessibility.cxx b/sdext/source/presenter/PresenterAccessibility.cxx
index 8dcbb20377ea..86f17c26aa9c 100644
--- a/sdext/source/presenter/PresenterAccessibility.cxx
+++ b/sdext/source/presenter/PresenterAccessibility.cxx
@@ -215,6 +215,7 @@ protected:
void UpdateState (const sal_Int16 aState, const bool bValue);
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const
throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterButton.hxx b/sdext/source/presenter/PresenterButton.hxx
index 37232cc363f0..fe16bcb2cbf0 100644
--- a/sdext/source/presenter/PresenterButton.hxx
+++ b/sdext/source/presenter/PresenterButton.hxx
@@ -160,6 +160,7 @@ private:
const css::uno::Reference<css::uno::XComponentContext>& rxComponentContext,
const OUString& rsConfgurationName);
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const
throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterHelpView.hxx b/sdext/source/presenter/PresenterHelpView.hxx
index 3e068e484da7..67f314b82613 100644
--- a/sdext/source/presenter/PresenterHelpView.hxx
+++ b/sdext/source/presenter/PresenterHelpView.hxx
@@ -117,7 +117,7 @@ private:
*/
void CheckFontSize();
- /** 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/sdext/source/presenter/PresenterPaneBase.hxx b/sdext/source/presenter/PresenterPaneBase.hxx
index 55704e8bace1..9a31c2eacf27 100644
--- a/sdext/source/presenter/PresenterPaneBase.hxx
+++ b/sdext/source/presenter/PresenterPaneBase.hxx
@@ -138,7 +138,7 @@ protected:
void LayoutContextWindow();
bool IsVisible() const;
- /** 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/sdext/source/presenter/PresenterPaneBorderPainter.hxx b/sdext/source/presenter/PresenterPaneBorderPainter.hxx
index f50b8a2c4cb3..8230cd58a1aa 100644
--- a/sdext/source/presenter/PresenterPaneBorderPainter.hxx
+++ b/sdext/source/presenter/PresenterPaneBorderPainter.hxx
@@ -135,6 +135,7 @@ private:
const css::uno::Reference<css::rendering::XCanvas>& rxCanvas);
void ProvideTheme();
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const
throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterPaneFactory.hxx b/sdext/source/presenter/PresenterPaneFactory.hxx
index ea39e6cf1b01..932111af0411 100644
--- a/sdext/source/presenter/PresenterPaneFactory.hxx
+++ b/sdext/source/presenter/PresenterPaneFactory.hxx
@@ -112,6 +112,7 @@ private:
const css::uno::Reference<css::drawing::framework::XPane>& rxParentPane,
const bool bIsSpritePane);
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterProtocolHandler.hxx b/sdext/source/presenter/PresenterProtocolHandler.hxx
index ed94385bb2be..68594dbfc721 100644
--- a/sdext/source/presenter/PresenterProtocolHandler.hxx
+++ b/sdext/source/presenter/PresenterProtocolHandler.hxx
@@ -87,6 +87,7 @@ private:
class Dispatch;
::rtl::Reference<PresenterController> mpPresenterController;
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterSlidePreview.hxx b/sdext/source/presenter/PresenterSlidePreview.hxx
index a3460d43eaec..f94eab89cccd 100644
--- a/sdext/source/presenter/PresenterSlidePreview.hxx
+++ b/sdext/source/presenter/PresenterSlidePreview.hxx
@@ -145,7 +145,7 @@ private:
*/
void Resize();
- /** 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/sdext/source/presenter/PresenterSlideShowView.hxx b/sdext/source/presenter/PresenterSlideShowView.hxx
index 1debbf705434..a324f7009d02 100644
--- a/sdext/source/presenter/PresenterSlideShowView.hxx
+++ b/sdext/source/presenter/PresenterSlideShowView.hxx
@@ -258,7 +258,7 @@ private:
void CreateBackgroundPolygons();
- /** 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/sdext/source/presenter/PresenterSlideSorter.hxx b/sdext/source/presenter/PresenterSlideSorter.hxx
index 353760f98fa1..3d5d4d82ce3e 100644
--- a/sdext/source/presenter/PresenterSlideSorter.hxx
+++ b/sdext/source/presenter/PresenterSlideSorter.hxx
@@ -198,7 +198,7 @@ private:
void GotoSlide (const sal_Int32 nSlideIndex);
bool ProvideCanvas();
- /** 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/sdext/source/presenter/PresenterToolBar.hxx b/sdext/source/presenter/PresenterToolBar.hxx
index fea18534f113..b4b83b8dd765 100644
--- a/sdext/source/presenter/PresenterToolBar.hxx
+++ b/sdext/source/presenter/PresenterToolBar.hxx
@@ -207,7 +207,7 @@ private:
const css::uno::Reference<css::beans::XPropertySet>& rProperties,
Context& rContext);
- /** This method throws a DisposedException when the object has already been
+ /** @throws css::lang::DisposedException when the object has already been
disposed.
*/
void ThrowIfDisposed() const
diff --git a/sdext/source/presenter/PresenterViewFactory.hxx b/sdext/source/presenter/PresenterViewFactory.hxx
index 0b62d439df78..b83c7790a592 100644
--- a/sdext/source/presenter/PresenterViewFactory.hxx
+++ b/sdext/source/presenter/PresenterViewFactory.hxx
@@ -156,6 +156,7 @@ private:
const css::uno::Reference<css::drawing::framework::XResourceId>& rxViewId,
const css::uno::Reference<css::drawing::framework::XPane>& rxAnchorPane);
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const throw (css::lang::DisposedException);
};
diff --git a/sdext/source/presenter/PresenterWindowManager.hxx b/sdext/source/presenter/PresenterWindowManager.hxx
index 0dbdac35b110..26bc4f701cf6 100644
--- a/sdext/source/presenter/PresenterWindowManager.hxx
+++ b/sdext/source/presenter/PresenterWindowManager.hxx
@@ -212,6 +212,7 @@ private:
void NotifyDisposing();
+ /// @throws css::lang::DisposedException
void ThrowIfDisposed() const throw (css::lang::DisposedException);
};