summaryrefslogtreecommitdiff
path: root/include/cppuhelper/component.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppuhelper/component.hxx')
-rw-r--r--include/cppuhelper/component.hxx21
1 files changed, 7 insertions, 14 deletions
diff --git a/include/cppuhelper/component.hxx b/include/cppuhelper/component.hxx
index e9a684f1b14c..d6b45a825222 100644
--- a/include/cppuhelper/component.hxx
+++ b/include/cppuhelper/component.hxx
@@ -61,11 +61,9 @@ public:
// XAggregation
virtual css::uno::Any SAL_CALL queryInterface(
- css::uno::Type const & rType )
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Type const & rType ) SAL_OVERRIDE;
virtual css::uno::Any SAL_CALL queryAggregation(
- css::uno::Type const & rType )
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Type const & rType ) SAL_OVERRIDE;
virtual void SAL_CALL acquire()
throw () SAL_OVERRIDE;
virtual void SAL_CALL release()
@@ -74,23 +72,18 @@ public:
/** @attention
XTypeProvider::getImplementationId() has to be implemented separately!
*/
- virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE = 0;
+ virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE = 0;
/** @attention
XTypeProvider::getTypes() has to be re-implemented!
*/
- virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE;
// XComponent
- virtual void SAL_CALL dispose()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL dispose() SAL_OVERRIDE;
virtual void SAL_CALL addEventListener(
- const css::uno::Reference< css::lang::XEventListener >& aListener )
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::uno::Reference< css::lang::XEventListener >& aListener ) SAL_OVERRIDE;
virtual void SAL_CALL removeEventListener(
- const css::uno::Reference< css::lang::XEventListener >& aListener )
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::uno::Reference< css::lang::XEventListener >& aListener ) SAL_OVERRIDE;
protected:
/** Called in dispose method after the listeners were notified.