summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper/component.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:08:06 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:46 +0200
commitda906ab93781928adc51c605825f91b16fe8dd19 (patch)
treed66505e7ca1c9894dd4fb10503f78a4edbd1be74 /include/cppuhelper/component.hxx
parentcomphelper: remove SAL_THROW macro (diff)
downloadcore-da906ab93781928adc51c605825f91b16fe8dd19.tar.gz
core-da906ab93781928adc51c605825f91b16fe8dd19.zip
cppuhelper: remove SAL_THROW macro
Change-Id: I54141071396d04e7bead56da14a665b8556ba6d2
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 & );
};
}