summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper/weakagg.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/weakagg.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/weakagg.hxx')
-rw-r--r--include/cppuhelper/weakagg.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/cppuhelper/weakagg.hxx b/include/cppuhelper/weakagg.hxx
index 0514fd6bacec..8575fb3cce5b 100644
--- a/include/cppuhelper/weakagg.hxx
+++ b/include/cppuhelper/weakagg.hxx
@@ -44,7 +44,7 @@ class CPPUHELPER_DLLPUBLIC OWeakAggObject
public:
/** Constructor. No delegator set.
*/
- inline OWeakAggObject() SAL_THROW(())
+ inline OWeakAggObject()
{}
/** If a delegator is set, then the delegators gets acquired. Otherwise call is delegated to
@@ -87,14 +87,14 @@ protected:
Despite the fact that a RuntimeException is allowed to be thrown, you must not throw any
exception upon destruction!
*/
- virtual ~OWeakAggObject() SAL_THROW( (::com::sun::star::uno::RuntimeException) );
+ virtual ~OWeakAggObject();
/** weak reference to delegator.
*/
::com::sun::star::uno::WeakReferenceHelper xDelegator;
private:
- OWeakAggObject( const OWeakAggObject & rObj ) SAL_THROW(());
- OWeakAggObject & operator = ( const OWeakAggObject & rObj ) SAL_THROW(());
+ OWeakAggObject( const OWeakAggObject & rObj );
+ OWeakAggObject & operator = ( const OWeakAggObject & rObj );
};
}