diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-16 16:14:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-16 16:14:12 +0000 |
commit | cdb6b76727c23b0215a948144c3fefefbbe780a4 (patch) | |
tree | ebaaa004472140218092294be737ff64ca3f9713 /svx/inc | |
parent | 955ef0a4390ed9d8316ce3c9c5f09122f7953082 (diff) |
#92924#: exception specifcations
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/fmgridif.hxx | 8 | ||||
-rw-r--r-- | svx/inc/unopool.hxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/svx/inc/fmgridif.hxx b/svx/inc/fmgridif.hxx index 71d423f29b76..da563beaeae4 100644 --- a/svx/inc/fmgridif.hxx +++ b/svx/inc/fmgridif.hxx @@ -2,9 +2,9 @@ * * $RCSfile: fmgridif.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hjs $ $Date: 2001-09-12 16:26:26 $ + * last change: $Author: hr $ $Date: 2001-10-16 17:14:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -152,8 +152,8 @@ protected: public: OWeakSubObject(::cppu::OWeakObject& rParent) : m_rParent(rParent) { } - virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { m_rParent.acquire(); } - virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { m_rParent.release(); } + virtual void SAL_CALL acquire() throw() { m_rParent.acquire(); } + virtual void SAL_CALL release() throw() { m_rParent.release(); } }; //================================================================== diff --git a/svx/inc/unopool.hxx b/svx/inc/unopool.hxx index c7eb23676c51..2ecf7cd9c259 100644 --- a/svx/inc/unopool.hxx +++ b/svx/inc/unopool.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unopool.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: cl $ $Date: 2001-03-14 16:38:38 $ + * last change: $Author: hr $ $Date: 2001-10-16 17:14:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -108,8 +108,8 @@ public: // XInterface virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL acquire() throw(); + virtual void SAL_CALL release() throw(); // XTypeProvider virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException); |