diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:57:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:20 +0100 |
commit | f72756cdfb9cd0b574fd84f194355c3ad00d3677 (patch) | |
tree | 247e7f34af5735d4eb3024b2a96f52899f78392f /fpicker | |
parent | fba7a44ee479540ba65b41ef1e647cdb93c20d14 (diff) |
New loplugin:dynexcspec: Add @throws documentation, fpicker
Change-Id: I067f6d5278681b35d3a3fea105e3bf383d3a96f8
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.hxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/OfficeFolderPicker.hxx | 1 | ||||
-rw-r--r-- | fpicker/source/office/commonpicker.hxx | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/fpicker/source/office/OfficeFilePicker.hxx b/fpicker/source/office/OfficeFilePicker.hxx index 8f940d272f97..0886b3ca1665 100644 --- a/fpicker/source/office/OfficeFilePicker.hxx +++ b/fpicker/source/office/OfficeFilePicker.hxx @@ -196,6 +196,7 @@ public: static OUString impl_getStaticImplementationName(); /* Helper for registry */ + /// @throws css::uno::Exception static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance ( const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw( css::uno::Exception ); @@ -253,6 +254,7 @@ public: static OUString impl_getStaticImplementationName(); /* Helper for registry */ + /// @throws css::uno::Exception static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance ( const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw( css::uno::Exception ); diff --git a/fpicker/source/office/OfficeFolderPicker.hxx b/fpicker/source/office/OfficeFolderPicker.hxx index 3b2c175401f5..771bdf8b2790 100644 --- a/fpicker/source/office/OfficeFolderPicker.hxx +++ b/fpicker/source/office/OfficeFolderPicker.hxx @@ -91,6 +91,7 @@ public: static OUString impl_getStaticImplementationName(); /* Helper for registry */ + /// @throws css::uno::Exception static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance ( const css::uno::Reference< css::uno::XComponentContext >& rxContext ) throw( css::uno::Exception ); diff --git a/fpicker/source/office/commonpicker.hxx b/fpicker/source/office/commonpicker.hxx index 90d86a9c4a3a..36bc38be5463 100644 --- a/fpicker/source/office/commonpicker.hxx +++ b/fpicker/source/office/commonpicker.hxx @@ -134,7 +134,9 @@ namespace svt // XExecutableDialog functions + /// @throws css::uno::RuntimeException virtual void SAL_CALL setTitle( const OUString& _rTitle ) throw( css::uno::RuntimeException, std::exception ); + /// @throws css::uno::RuntimeException virtual sal_Int16 SAL_CALL execute() throw( css::uno::RuntimeException, std::exception ); |