diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:57:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:21 +0100 |
commit | 8ee3f986981ecb74bafb9d4702085bb993418efd (patch) | |
tree | ef1e45940c38c5af30644cf8f97b59df6b20f4e9 /extensions | |
parent | 4770f5488870cae68d9a3df2c62613c32a040f44 (diff) |
New loplugin:dynexcspec: Add @throws documentation, extensions
Change-Id: Ia44f7b0a162d269bf38133575f986efd62eb6d52
Diffstat (limited to 'extensions')
30 files changed, 67 insertions, 3 deletions
diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx index c48bbe5b960e..2ffbb7642942 100644 --- a/extensions/source/bibliography/bibload.cxx +++ b/extensions/source/bibliography/bibload.cxx @@ -128,6 +128,7 @@ public: static Sequence<OUString> SAL_CALL getSupportedServiceNames_Static() throw( ); + /// @throws Exception friend Reference< XInterface > SAL_CALL BibliographyLoader_CreateInstance( const Reference< XMultiServiceFactory > & rSMgr ) throw( Exception ); // XLoader diff --git a/extensions/source/bibliography/general.hxx b/extensions/source/bibliography/general.hxx index c50323ab5199..dfcaf52a1a9c 100644 --- a/extensions/source/bibliography/general.hxx +++ b/extensions/source/bibliography/general.hxx @@ -162,7 +162,9 @@ public: const rtl::Reference<BibGeneralPageFocusListener>& GetFocusListener() { return mxBibGeneralPageFocusListener; } + /// @throws css::uno::RuntimeException void focusGained(const css::awt::FocusEvent& rEvent) throw( css::uno::RuntimeException, std::exception ); + /// @throws css::uno::RuntimeException void focusLost(const css::awt::FocusEvent& rEvent) throw( css::uno::RuntimeException, std::exception ); }; diff --git a/extensions/source/bibliography/loadlisteneradapter.hxx b/extensions/source/bibliography/loadlisteneradapter.hxx index 8aa5165d18bf..47458a678980 100644 --- a/extensions/source/bibliography/loadlisteneradapter.hxx +++ b/extensions/source/bibliography/loadlisteneradapter.hxx @@ -94,6 +94,7 @@ namespace bib protected: // XEventListener + /// @throws css::uno::RuntimeException virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) throw( css::uno::RuntimeException, std::exception); }; diff --git a/extensions/source/bibliography/toolbar.hxx b/extensions/source/bibliography/toolbar.hxx index fc6f01b5518b..c1dbe7bd0abc 100644 --- a/extensions/source/bibliography/toolbar.hxx +++ b/extensions/source/bibliography/toolbar.hxx @@ -175,6 +175,7 @@ class BibToolBar: public ToolBox sal_uInt16 InsertFilterItem(const OUString& ); void SelectFilterItem(sal_uInt16 nId); + /// @throws css::uno::RuntimeException void statusChanged(const css::frame::FeatureStateEvent& Event) throw( css::uno::RuntimeException ); diff --git a/extensions/source/config/ldap/ldapaccess.hxx b/extensions/source/config/ldap/ldapaccess.hxx index ca206acce9ba..7aa848910c90 100644 --- a/extensions/source/config/ldap/ldapaccess.hxx +++ b/extensions/source/config/ldap/ldapaccess.hxx @@ -82,7 +82,10 @@ public: LdapConnection() : mConnection(nullptr),mLdapDefinition() {} /** Destructor, releases the connection */ ~LdapConnection() ; - /** Make connection to LDAP server */ + /** Make connection to LDAP server + @throws ldap::LdapConnectionException + @throws ldap::LdapGenericException + */ void connectSimple(const LdapDefinition& aDefinition) throw (ldap::LdapConnectionException, ldap::LdapGenericException); @@ -103,6 +106,9 @@ public: /** finds DN of user @return DN of User + @throws lang::IllegalArgumentException + @throws ldap::LdapConnectionException + @throws ldap::LdapGenericException */ OUString findUserDn(const OUString& aUser) throw (lang::IllegalArgumentException, @@ -110,7 +116,7 @@ public: ldap::LdapGenericException); private: - + /// @throws ldap::LdapConnectionException void initConnection() throw (ldap::LdapConnectionException); void disconnect(); @@ -120,6 +126,8 @@ private: */ bool isValid() const { return mConnection != nullptr ; } + /// @throws ldap::LdapConnectionException + /// @throws ldap::LdapGenericException void connectSimple() throw (ldap::LdapConnectionException, ldap::LdapGenericException); diff --git a/extensions/source/dbpilots/unoautopilot.hxx b/extensions/source/dbpilots/unoautopilot.hxx index 8d41f1287942..91187d78d661 100644 --- a/extensions/source/dbpilots/unoautopilot.hxx +++ b/extensions/source/dbpilots/unoautopilot.hxx @@ -66,11 +66,13 @@ namespace dbp } // XServiceInfo - static methods + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_Static() throw( css::uno::RuntimeException ) { return SERVICEINFO::getServiceNames(); } + /// @throws css::uno::RuntimeException static OUString getImplementationName_Static() throw( css::uno::RuntimeException ) { return SERVICEINFO::getImplementationName(); diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx index 79cb0ed1644e..59f6b55aaba3 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx @@ -37,7 +37,9 @@ namespace pcr explicit MasterDetailLinkDialog(const css::uno::Reference< css::uno::XComponentContext >& _rxContext); // XServiceInfo - static methods + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static() throw( css::uno::RuntimeException ); + /// @throws css::uno::RuntimeException static OUString getImplementationName_static() throw( css::uno::RuntimeException ); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/browserlistbox.hxx b/extensions/source/propctrlr/browserlistbox.hxx index a0b608917a55..fb2061dbcb13 100644 --- a/extensions/source/propctrlr/browserlistbox.hxx +++ b/extensions/source/propctrlr/browserlistbox.hxx @@ -143,8 +143,11 @@ namespace pcr bool IsModified( ) const; void CommitModified( ); + /// @throws css::uno::RuntimeException void SAL_CALL focusGained( const css::uno::Reference< css::inspection::XPropertyControl >& Control ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void SAL_CALL valueChanged( const css::uno::Reference< css::inspection::XPropertyControl >& Control ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void SAL_CALL activateNextControl( const css::uno::Reference< css::inspection::XPropertyControl >& CurrentControl ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/buttonnavigationhandler.hxx b/extensions/source/propctrlr/buttonnavigationhandler.hxx index 48190361ba6b..5a7bf0edb55b 100644 --- a/extensions/source/propctrlr/buttonnavigationhandler.hxx +++ b/extensions/source/propctrlr/buttonnavigationhandler.hxx @@ -40,7 +40,9 @@ namespace pcr explicit ButtonNavigationHandler( const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/cellbindinghandler.hxx b/extensions/source/propctrlr/cellbindinghandler.hxx index b8422b6e20ba..96b80419eb30 100644 --- a/extensions/source/propctrlr/cellbindinghandler.hxx +++ b/extensions/source/propctrlr/cellbindinghandler.hxx @@ -48,7 +48,9 @@ namespace pcr const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/commoncontrol.hxx b/extensions/source/propctrlr/commoncontrol.hxx index 0d46aaa5bcce..f16cf2e93a9f 100644 --- a/extensions/source/propctrlr/commoncontrol.hxx +++ b/extensions/source/propctrlr/commoncontrol.hxx @@ -74,10 +74,15 @@ namespace pcr virtual void setModified() { m_bModified = true; } // XPropertyControl + /// @throws css::uno::RuntimeException ::sal_Int16 SAL_CALL getControlType() throw (css::uno::RuntimeException) { return m_nControlType; } + /// @throws css::uno::RuntimeException const css::uno::Reference< css::inspection::XPropertyControlContext >& SAL_CALL getControlContext() throw (css::uno::RuntimeException) { return m_xContext; } + /// @throws css::uno::RuntimeException void SAL_CALL setControlContext( const css::uno::Reference< css::inspection::XPropertyControlContext >& _controlcontext ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool SAL_CALL isModified( ) throw (css::uno::RuntimeException) { return m_bModified; } + /// @throws css::uno::RuntimeException void SAL_CALL notifyModifiedValue( ) throw (css::uno::RuntimeException); /** (fail-safe) wrapper around calling our context's activateNextControl diff --git a/extensions/source/propctrlr/composeduiupdate.hxx b/extensions/source/propctrlr/composeduiupdate.hxx index bd2539f56ada..21157e3df012 100644 --- a/extensions/source/propctrlr/composeduiupdate.hxx +++ b/extensions/source/propctrlr/composeduiupdate.hxx @@ -39,6 +39,7 @@ namespace pcr class SAL_NO_VTABLE IPropertyExistenceCheck { public: + /// @throws css::uno::RuntimeException virtual bool SAL_CALL hasPropertyByName( const OUString& _rName ) throw (css::uno::RuntimeException) = 0; protected: diff --git a/extensions/source/propctrlr/controlfontdialog.hxx b/extensions/source/propctrlr/controlfontdialog.hxx index b2ee83a4c85c..24e688eca00f 100644 --- a/extensions/source/propctrlr/controlfontdialog.hxx +++ b/extensions/source/propctrlr/controlfontdialog.hxx @@ -62,7 +62,9 @@ namespace pcr virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override; // XServiceInfo - static methods + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static() throw( css::uno::RuntimeException ); + /// @throws css::uno::RuntimeException static OUString getImplementationName_static() throw( css::uno::RuntimeException ); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/defaultforminspection.hxx b/extensions/source/propctrlr/defaultforminspection.hxx index cc7dd7bb18be..897a74e6551f 100644 --- a/extensions/source/propctrlr/defaultforminspection.hxx +++ b/extensions/source/propctrlr/defaultforminspection.hxx @@ -56,7 +56,9 @@ namespace pcr public: // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString getImplementationName_static( ) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static( ) throw(css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/defaulthelpprovider.hxx b/extensions/source/propctrlr/defaulthelpprovider.hxx index 92dbd28f6b30..5b2e0fbea200 100644 --- a/extensions/source/propctrlr/defaulthelpprovider.hxx +++ b/extensions/source/propctrlr/defaulthelpprovider.hxx @@ -50,7 +50,9 @@ namespace pcr DefaultHelpProvider(); // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString getImplementationName_static( ) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static( ) throw(css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/editpropertyhandler.hxx b/extensions/source/propctrlr/editpropertyhandler.hxx index 27f8c034c1e7..f0346f2a7515 100644 --- a/extensions/source/propctrlr/editpropertyhandler.hxx +++ b/extensions/source/propctrlr/editpropertyhandler.hxx @@ -40,7 +40,9 @@ namespace pcr const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/eformspropertyhandler.hxx b/extensions/source/propctrlr/eformspropertyhandler.hxx index 6d34ceaf3c5b..3b84b3e9c4da 100644 --- a/extensions/source/propctrlr/eformspropertyhandler.hxx +++ b/extensions/source/propctrlr/eformspropertyhandler.hxx @@ -51,7 +51,9 @@ namespace pcr const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/eventhandler.hxx b/extensions/source/propctrlr/eventhandler.hxx index 634b2f92d8cf..dba6b1979200 100644 --- a/extensions/source/propctrlr/eventhandler.hxx +++ b/extensions/source/propctrlr/eventhandler.hxx @@ -96,7 +96,9 @@ namespace pcr public: // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > Create( const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); diff --git a/extensions/source/propctrlr/formcomponenthandler.hxx b/extensions/source/propctrlr/formcomponenthandler.hxx index 0b2791dfbef9..6ca1de715068 100644 --- a/extensions/source/propctrlr/formcomponenthandler.hxx +++ b/extensions/source/propctrlr/formcomponenthandler.hxx @@ -103,7 +103,9 @@ namespace pcr // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(css::uno::RuntimeException, std::exception) override; + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/propctrlr/formcontroller.hxx b/extensions/source/propctrlr/formcontroller.hxx index 53be685e7563..73e75af72053 100644 --- a/extensions/source/propctrlr/formcontroller.hxx +++ b/extensions/source/propctrlr/formcontroller.hxx @@ -68,7 +68,9 @@ namespace pcr ); // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString getImplementationName_static( ) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static( ) throw(css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); @@ -110,7 +112,9 @@ namespace pcr { public: // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString getImplementationName_static( ) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static( ) throw(css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/formgeometryhandler.cxx b/extensions/source/propctrlr/formgeometryhandler.cxx index 8f35c95d0e11..dfd2ee4031a0 100644 --- a/extensions/source/propctrlr/formgeometryhandler.cxx +++ b/extensions/source/propctrlr/formgeometryhandler.cxx @@ -209,7 +209,9 @@ namespace pcr const Reference< XComponentContext >& _rxContext ); + /// @throws RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (RuntimeException); + /// @throws RuntimeException static Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (RuntimeException); protected: diff --git a/extensions/source/propctrlr/genericpropertyhandler.hxx b/extensions/source/propctrlr/genericpropertyhandler.hxx index 7027a272eb9f..58589a6b811c 100644 --- a/extensions/source/propctrlr/genericpropertyhandler.hxx +++ b/extensions/source/propctrlr/genericpropertyhandler.hxx @@ -81,7 +81,9 @@ namespace pcr public: // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > Create( const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); diff --git a/extensions/source/propctrlr/handlerhelper.hxx b/extensions/source/propctrlr/handlerhelper.hxx index 6e9cac3a51cc..891aa05b290d 100644 --- a/extensions/source/propctrlr/handlerhelper.hxx +++ b/extensions/source/propctrlr/handlerhelper.hxx @@ -196,6 +196,7 @@ namespace pcr static css::uno::Reference< css::uno::XInterface > getContextDocument( const css::uno::Reference<css::uno::XComponentContext> & _rContext ); + /// @throws css::uno::RuntimeException static css::uno::Reference< css::uno::XInterface > getContextDocument_throw( const css::uno::Reference<css::uno::XComponentContext> & _rContext ) throw (css::uno::RuntimeException); /** gets the window of the ObjectInspector in which an property handler lives diff --git a/extensions/source/propctrlr/objectinspectormodel.cxx b/extensions/source/propctrlr/objectinspectormodel.cxx index 544d273c79b7..b2761372526a 100644 --- a/extensions/source/propctrlr/objectinspectormodel.cxx +++ b/extensions/source/propctrlr/objectinspectormodel.cxx @@ -71,7 +71,9 @@ namespace pcr virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (RuntimeException, std::exception) override; // XServiceInfo - static versions + /// @throws RuntimeException static OUString getImplementationName_static( ) throw(RuntimeException); + /// @throws RuntimeException static Sequence< OUString > getSupportedServiceNames_static( ) throw(RuntimeException); static Reference< XInterface > SAL_CALL Create(const Reference< XComponentContext >&); diff --git a/extensions/source/propctrlr/pcrunodialogs.hxx b/extensions/source/propctrlr/pcrunodialogs.hxx index 6e99e89ebc51..91dfacfdd621 100644 --- a/extensions/source/propctrlr/pcrunodialogs.hxx +++ b/extensions/source/propctrlr/pcrunodialogs.hxx @@ -60,7 +60,9 @@ namespace pcr virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override; // XServiceInfo - static methods + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static() throw( css::uno::RuntimeException ); + /// @throws css::uno::RuntimeException static OUString getImplementationName_static() throw( css::uno::RuntimeException ); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/propcontroller.hxx b/extensions/source/propctrlr/propcontroller.hxx index bf99b6d3f34a..f17a17170ebf 100644 --- a/extensions/source/propctrlr/propcontroller.hxx +++ b/extensions/source/propctrlr/propcontroller.hxx @@ -190,7 +190,9 @@ namespace pcr public: // XServiceInfo - static versions + /// @throws css::uno::RuntimeException static OUString getImplementationName_static( ) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > getSupportedServiceNames_static( ) throw(css::uno::RuntimeException); static css::uno::Reference< css::uno::XInterface > SAL_CALL Create(const css::uno::Reference< css::uno::XComponentContext >&); diff --git a/extensions/source/propctrlr/submissionhandler.hxx b/extensions/source/propctrlr/submissionhandler.hxx index 3a43f2323bf2..63bcbb34fdd0 100644 --- a/extensions/source/propctrlr/submissionhandler.hxx +++ b/extensions/source/propctrlr/submissionhandler.hxx @@ -76,7 +76,9 @@ namespace pcr const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); virtual ~SubmissionPropertyHandler() override; diff --git a/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx b/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx index cd7ef544e767..a6779e3f5b30 100644 --- a/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx +++ b/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx @@ -45,7 +45,9 @@ namespace pcr const css::uno::Reference< css::uno::XComponentContext >& _rxContext ); + /// @throws css::uno::RuntimeException static OUString SAL_CALL getImplementationName_static( ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static( ) throw (css::uno::RuntimeException); protected: diff --git a/extensions/source/scanner/scanner.hxx b/extensions/source/scanner/scanner.hxx index c854f3fab958..c0effbaaf363 100644 --- a/extensions/source/scanner/scanner.hxx +++ b/extensions/source/scanner/scanner.hxx @@ -86,6 +86,7 @@ public: void SetData( void* pData ) { ReleaseData(); mpData = pData; } }; +/// @throws Exception Reference< XInterface > SAL_CALL ScannerManager_CreateInstance( const Reference< css::lang::XMultiServiceFactory >& rxFactory ) throw( Exception ); #endif diff --git a/extensions/source/update/check/updatecheckconfig.hxx b/extensions/source/update/check/updatecheckconfig.hxx index 9380bf6cada5..c819c90d1814 100644 --- a/extensions/source/update/check/updatecheckconfig.hxx +++ b/extensions/source/update/check/updatecheckconfig.hxx @@ -200,7 +200,7 @@ private: const ::rtl::Reference< UpdateCheckConfigListener > m_rListener; }; - +/// @throws css::uno::RuntimeException template <typename T> T getValue( const css::uno::Sequence< css::beans::NamedValue >& rNamedValues, const sal_Char * pszName ) throw (css::uno::RuntimeException) |