diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:50:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:13 +0100 |
commit | dcb992ae2a4f022336c63e6bdace68000218397b (patch) | |
tree | af877dd82b15cb2e19ae8770d08244dd0ceff348 | |
parent | 491f9a6ce4ab670145833dbcdd2b2ae5fe824c68 (diff) |
New loplugin:dynexcspec: Add @throws documentation, starmath
Change-Id: I1181cd9fd50fc0307c4475abb8c59e3f16bade91
-rw-r--r-- | starmath/source/register.hxx | 4 | ||||
-rw-r--r-- | starmath/source/smdetect.hxx | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/starmath/source/register.hxx b/starmath/source/register.hxx index 988ba69a1d6e..49aa33dee750 100644 --- a/starmath/source/register.hxx +++ b/starmath/source/register.hxx @@ -28,6 +28,7 @@ css::uno::Sequence< OUString > SAL_CALL SmDocument_getSupportedServiceNames() throw(); OUString SAL_CALL SmDocument_getImplementationName() throw(); +/// @throws css::uno::Exception css::uno::Reference< css::uno::XInterface >SAL_CALL SmDocument_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr, SfxModelFlags _nCreationFlags) throw( css::uno::Exception ); @@ -36,17 +37,20 @@ css::uno::Sequence< OUString > SAL_CALL SmXMLImport_getSupportedServiceNames() throw(); OUString SAL_CALL SmXMLImport_getImplementationName() throw(); +/// @throws css::uno::Exception css::uno::Reference< css::uno::XInterface > SAL_CALL SmXMLImport_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr) throw( css::uno::Exception ); css::uno::Sequence< OUString > SAL_CALL SmXMLImportMeta_getSupportedServiceNames() throw(); OUString SAL_CALL SmXMLImportMeta_getImplementationName() throw(); +/// @throws css::uno::Exception css::uno::Reference< css::uno::XInterface > SAL_CALL SmXMLImportMeta_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr) throw( css::uno::Exception ); css::uno::Sequence< OUString > SAL_CALL SmXMLImportSettings_getSupportedServiceNames() throw(); OUString SAL_CALL SmXMLImportSettings_getImplementationName() throw(); +/// @throws css::uno::Exception css::uno::Reference< css::uno::XInterface > SAL_CALL SmXMLImportSettings_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr) throw( css::uno::Exception ); diff --git a/starmath/source/smdetect.hxx b/starmath/source/smdetect.hxx index 5c28ee521b48..e9c31a378ee1 100644 --- a/starmath/source/smdetect.hxx +++ b/starmath/source/smdetect.hxx @@ -67,6 +67,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::lang::XMultiServiceFactory >& xServiceManager ) throw( css::uno::Exception ); // XExtendedFilterDetect |