summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-10-21 10:59:43 +0000
committerOliver Bolte <obo@openoffice.org>2004-10-21 10:59:43 +0000
commit31a7eb68eeecf46109f9707385aec1330c0fa73a (patch)
tree6bcbe3fbfa53a57814508dd416e2f19a3bb871f1 /sfx2
parentfbfa4df8cc44914f19b1a1e107d097d8352bff15 (diff)
INTEGRATION: CWS valgrind57 (1.55.2); FILE MERGED
2004/10/19 11:30:59 dbo 1.55.2.1: #i35713# fixing throw clause
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/view/sfxbasecontroller.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sfx2/source/view/sfxbasecontroller.cxx b/sfx2/source/view/sfxbasecontroller.cxx
index 655258a095c6..1fb677342d3a 100644
--- a/sfx2/source/view/sfxbasecontroller.cxx
+++ b/sfx2/source/view/sfxbasecontroller.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sfxbasecontroller.cxx,v $
*
- * $Revision: 1.55 $
+ * $Revision: 1.56 $
*
- * last change: $Author: hr $ $Date: 2004-10-12 18:04:16 $
+ * last change: $Author: obo $ $Date: 2004-10-21 11:59:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -376,7 +376,8 @@ public:
IMPL_SfxBaseController_CloseListenerHelper( MUTEX& aMutex ,
SfxBaseController* pController ) ;
virtual ~IMPL_SfxBaseController_CloseListenerHelper() ;
- virtual void SAL_CALL queryClosing( const EVENTOBJECT& aEvent, sal_Bool bDeliverOwnership ) throw (RUNTIMEEXCEPTION) ;
+ virtual void SAL_CALL queryClosing( const EVENTOBJECT& aEvent, sal_Bool bDeliverOwnership )
+ throw (RUNTIMEEXCEPTION, com::sun::star::util::CloseVetoException) ;
virtual void SAL_CALL notifyClosing( const EVENTOBJECT& aEvent ) throw (RUNTIMEEXCEPTION) ;
virtual void SAL_CALL disposing( const EVENTOBJECT& aEvent ) throw (RUNTIMEEXCEPTION) ;
@@ -402,7 +403,8 @@ void SAL_CALL IMPL_SfxBaseController_CloseListenerHelper::disposing( const EVENT
{
}
-void SAL_CALL IMPL_SfxBaseController_CloseListenerHelper::queryClosing( const EVENTOBJECT& aEvent, sal_Bool bDeliverOwnership ) throw (RUNTIMEEXCEPTION)
+void SAL_CALL IMPL_SfxBaseController_CloseListenerHelper::queryClosing( const EVENTOBJECT& aEvent, sal_Bool bDeliverOwnership )
+ throw (RUNTIMEEXCEPTION, com::sun::star::util::CloseVetoException)
{
::vos::OGuard aGuard( Application::GetSolarMutex() );
if ( m_pController != NULL && m_pController->GetViewShell_Impl() )