summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbahyperlink.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:52:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:15 +0100
commitb36f675c5e13decbd3204c0e5e893a41e5653a72 (patch)
tree21239e676e490ab7b45273c2018a8d50c117227d /sc/source/ui/vba/vbahyperlink.hxx
parent8870dec9a431eeff5045efd4ba12a2a70bad5e24 (diff)
New loplugin:dynexcspec: Add @throws documentation, sc
Change-Id: Ieb01ae3f8c5d3010354027ea2c6e0a2cee176e7f
Diffstat (limited to 'sc/source/ui/vba/vbahyperlink.hxx')
-rw-r--r--sc/source/ui/vba/vbahyperlink.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/ui/vba/vbahyperlink.hxx b/sc/source/ui/vba/vbahyperlink.hxx
index dd079ce0570d..899721280105 100644
--- a/sc/source/ui/vba/vbahyperlink.hxx
+++ b/sc/source/ui/vba/vbahyperlink.hxx
@@ -32,10 +32,13 @@ typedef InheritedHelperInterfaceWeakImpl< ov::excel::XHyperlink > HyperlinkImpl_
class ScVbaHyperlink : public HyperlinkImpl_BASE
{
public:
+ /// @throws css::lang::IllegalArgumentException
+ /// @throws css::uno::RuntimeException
ScVbaHyperlink(
const css::uno::Sequence< css::uno::Any >& rArgs,
const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
ScVbaHyperlink(
const css::uno::Reference< ov::XHelperInterface >& rxAnchor,
const css::uno::Reference< css::uno::XComponentContext >& rxContext,
@@ -65,8 +68,11 @@ public:
private:
typedef ::std::pair< OUString, OUString > UrlComponents;
+ /// @throws css::uno::RuntimeException
void ensureTextField() throw (css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
UrlComponents getUrlComponents() throw (css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
void setUrlComponents( const UrlComponents& rUrlComp ) throw (css::uno::RuntimeException);
private: