diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-26 12:28:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-26 12:54:43 +0000 |
commit | e57ca02849c3d87142ff5ff9099a212e72b8139c (patch) | |
tree | bcce66b27261553c308779f3e8663a269ed3a671 /xmlhelp/source/cxxhelp/inc | |
parent | 8802ebd5172ec4bc412a59d136c82b77ab452281 (diff) |
Remove dynamic exception specifications
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at
<https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html>
"Dynamic Exception Specifications" for details.
Most changes have been done automatically by the rewriting loplugin:dynexcspec
(after enabling the rewriting mode, to be committed shortly). The way it only
removes exception specs from declarations if it also sees a definition, it
identified some dead declarations-w/o-definitions (that have been removed
manually) and some cases where a definition appeared in multiple include files
(which have also been cleaned up manually). There's also been cases of macro
paramters (that were used to abstract over exception specs) that have become
unused now (and been removed).
Furthermore, some code needed to be cleaned up manually
(avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no
configurations available that would actually build that code. Missing @throws
documentation has not been applied in such manual clean-up.
Change-Id: I3408691256c9b0c12bc5332de976743626e13960
Reviewed-on: https://gerrit.libreoffice.org/33574
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmlhelp/source/cxxhelp/inc')
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/tvfactory.hxx | 20 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/tvread.hxx | 75 |
2 files changed, 28 insertions, 67 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx index 695889b4d4a6..1563c8896941 100644 --- a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx @@ -45,35 +45,27 @@ class TVFactory: public cppu::WeakImplHelper < // XServiceInfo virtual OUString SAL_CALL - getImplementationName() - throw( css::uno::RuntimeException, std::exception ) override; + getImplementationName() override; virtual sal_Bool SAL_CALL - supportsService( const OUString& ServiceName ) - throw(css::uno::RuntimeException, std::exception ) override; + supportsService( const OUString& ServiceName ) override; virtual css::uno::Sequence< OUString > SAL_CALL - getSupportedServiceNames() - throw( css::uno::RuntimeException, std::exception ) override; + getSupportedServiceNames() override; // XMultiServiceFactory virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance( - const OUString& aServiceSpecifier ) - throw( css::uno::Exception, - css::uno::RuntimeException, std::exception ) override; + const OUString& aServiceSpecifier ) override; virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstanceWithArguments( const OUString& ServiceSpecifier, - const css::uno::Sequence< css::uno::Any >& Arguments ) - throw( css::uno::Exception, - css::uno::RuntimeException, std::exception) override; + const css::uno::Sequence< css::uno::Any >& Arguments ) override; virtual css::uno::Sequence< OUString > SAL_CALL - getAvailableServiceNames( ) - throw( css::uno::RuntimeException, std::exception ) override; + getAvailableServiceNames( ) override; // Other diff --git a/xmlhelp/source/cxxhelp/inc/tvread.hxx b/xmlhelp/source/cxxhelp/inc/tvread.hxx index 4795854cd89b..0b4e1594a7f0 100644 --- a/xmlhelp/source/cxxhelp/inc/tvread.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvread.hxx @@ -76,14 +76,12 @@ namespace treeview { // XNameAccess virtual css::uno::Type SAL_CALL - getElementType( ) - throw( css::uno::RuntimeException, std::exception ) override + getElementType( ) override { return cppu::UnoType<void>::get(); } - virtual sal_Bool SAL_CALL hasElements() - throw( css::uno::RuntimeException, std::exception ) override + virtual sal_Bool SAL_CALL hasElements() override { return true; } @@ -92,8 +90,7 @@ namespace treeview { virtual void SAL_CALL addChangesListener( - const css::uno::Reference< css::util::XChangesListener >& aListener ) - throw( css::uno::RuntimeException, std::exception ) override + const css::uno::Reference< css::util::XChangesListener >& aListener ) override { // read only (void)aListener; @@ -101,8 +98,7 @@ namespace treeview { virtual void SAL_CALL removeChangesListener( - const css::uno::Reference< css::util::XChangesListener >& aListener ) - throw( css::uno::RuntimeException, std::exception ) override + const css::uno::Reference< css::util::XChangesListener >& aListener ) override { // read only (void)aListener; @@ -110,22 +106,19 @@ namespace treeview { // XComponent - virtual void SAL_CALL dispose( ) - throw( css::uno::RuntimeException, std::exception ) override + virtual void SAL_CALL dispose( ) override { } virtual void SAL_CALL addEventListener( - const css::uno::Reference< css::lang::XEventListener >& xListener ) - throw( css::uno::RuntimeException, std::exception ) override + const css::uno::Reference< css::lang::XEventListener >& xListener ) override { (void)xListener; } virtual void SAL_CALL removeEventListener( - const css::uno::Reference< css::lang::XEventListener >& aListener ) - throw( css::uno::RuntimeException, std::exception ) override + const css::uno::Reference< css::lang::XEventListener >& aListener ) override { (void)aListener; } @@ -134,29 +127,21 @@ namespace treeview { // XNameAccess virtual css::uno::Any SAL_CALL - getByName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::lang::WrappedTargetException, - css::uno::RuntimeException, std::exception) override = 0; + getByName( const OUString& aName ) override = 0; virtual css::uno::Sequence< OUString > SAL_CALL - getElementNames( ) - throw( css::uno::RuntimeException, std::exception ) override = 0; + getElementNames( ) override = 0; virtual sal_Bool SAL_CALL - hasByName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override = 0; + hasByName( const OUString& aName ) override = 0; // XHierarchicalNameAccess virtual css::uno::Any SAL_CALL - getByHierarchicalName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::uno::RuntimeException, std::exception ) override = 0; + getByHierarchicalName( const OUString& aName ) override = 0; virtual sal_Bool SAL_CALL - hasByHierarchicalName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override = 0; + hasByHierarchicalName( const OUString& aName ) override = 0; }; // end class TVBase @@ -173,29 +158,21 @@ namespace treeview { // XNameAccess virtual css::uno::Any SAL_CALL - getByName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::lang::WrappedTargetException, - css::uno::RuntimeException, std::exception) override; + getByName( const OUString& aName ) override; virtual css::uno::Sequence< OUString > SAL_CALL - getElementNames( ) - throw( css::uno::RuntimeException, std::exception ) override; + getElementNames( ) override; virtual sal_Bool SAL_CALL - hasByName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override; + hasByName( const OUString& aName ) override; // XHierarchicalNameAccess virtual css::uno::Any SAL_CALL - getByHierarchicalName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::uno::RuntimeException, std::exception ) override; + getByHierarchicalName( const OUString& aName ) override; virtual sal_Bool SAL_CALL - hasByHierarchicalName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override; + hasByHierarchicalName( const OUString& aName ) override; private: @@ -217,29 +194,21 @@ namespace treeview { virtual ~TVChildTarget() override; virtual css::uno::Any SAL_CALL - getByName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::lang::WrappedTargetException, - css::uno::RuntimeException, std::exception) override; + getByName( const OUString& aName ) override; virtual css::uno::Sequence< OUString > SAL_CALL - getElementNames( ) - throw( css::uno::RuntimeException, std::exception ) override; + getElementNames( ) override; virtual sal_Bool SAL_CALL - hasByName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override; + hasByName( const OUString& aName ) override; // XHierarchicalNameAccess virtual css::uno::Any SAL_CALL - getByHierarchicalName( const OUString& aName ) - throw( css::container::NoSuchElementException, - css::uno::RuntimeException, std::exception ) override; + getByHierarchicalName( const OUString& aName ) override; virtual sal_Bool SAL_CALL - hasByHierarchicalName( const OUString& aName ) - throw( css::uno::RuntimeException, std::exception ) override; + hasByHierarchicalName( const OUString& aName ) override; private: std::vector< rtl::Reference< TVRead > > Elements; |