summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/inc/tvread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/inc/tvread.hxx')
-rw-r--r--xmlhelp/source/cxxhelp/inc/tvread.hxx75
1 files changed, 22 insertions, 53 deletions
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;