summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/inc
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/inc')
-rw-r--r--xmlhelp/source/cxxhelp/inc/tvfactory.hxx20
-rw-r--r--xmlhelp/source/cxxhelp/inc/tvread.hxx75
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;