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.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/cppuhelper/component.hxx b/include/cppuhelper/component.hxx
index 2f39ec83a11d..e22bb45b5396 100644
--- a/include/cppuhelper/component.hxx
+++ b/include/cppuhelper/component.hxx
@@ -54,10 +54,10 @@ public:
the mutex used to protect multi-threaded access;
lifetime must be longer than the lifetime of this object.
*/
- OComponentHelper( ::osl::Mutex & rMutex ) SAL_THROW(());
+ OComponentHelper( ::osl::Mutex & rMutex );
/** Destructor. If this object was not disposed previously, object will be disposed manually.
*/
- virtual ~OComponentHelper() SAL_THROW( (::com::sun::star::uno::RuntimeException) );
+ virtual ~OComponentHelper();
// XAggregation
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(
@@ -102,8 +102,8 @@ protected:
/// @endcond
private:
- inline OComponentHelper( const OComponentHelper & ) SAL_THROW(());
- inline OComponentHelper & operator = ( const OComponentHelper & ) SAL_THROW(());
+ inline OComponentHelper( const OComponentHelper & );
+ inline OComponentHelper & operator = ( const OComponentHelper & );
};
}