diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-05-28 11:57:57 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-05-28 11:57:57 +0000 |
commit | 8147b602119ba6129753c7ebfa89aa4effa5adcc (patch) | |
tree | e95adf2cb516ad54665e96a78e01b2e94f0774de /framework | |
parent | 6449adca1f41d5a6842605d0de57d84f2c00d791 (diff) |
#65293#: syntax
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/frame.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 06459629df85..b5ec1fe9cd28 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -2,9 +2,9 @@ * * $RCSfile: frame.cxx,v $ * - * $Revision: 1.50 $ + * $Revision: 1.51 $ * - * last change: $Author: as $ $Date: 2002-05-24 11:33:59 $ + * last change: $Author: hr $ $Date: 2002-05-28 12:57:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1801,7 +1801,7 @@ void SAL_CALL Frame::close( sal_Bool bDeliverOwnerShip ) throw( css::util::Close // Because if a listener disagree with this close() request - we hace time to finish this // internal operations too ... // Note: container is threadsafe himself. - css::lang::EventObject aSource (static_cast<::cppu::OWeakObject*>(this)); + css::lang::EventObject aSource (static_cast< ::cppu::OWeakObject*>(this)); ::cppu::OInterfaceContainerHelper* pContainer = m_aListenerContainer.getContainer( ::getCppuType( ( const css::uno::Reference< css::util::XCloseListener >*) NULL ) ); if (pContainer!=NULL) { @@ -1828,7 +1828,7 @@ void SAL_CALL Frame::close( sal_Bool bDeliverOwnerShip ) throw( css::util::Close WriteGuard aWriteLock( m_aLock ); m_bSelfClose = sal_True; }/* SAFE */ - throw css::util::CloseVetoException(DECLARE_ASCII("Frame in use for loading document ..."),static_cast<::cppu::OWeakObject*>(this)); + throw css::util::CloseVetoException(DECLARE_ASCII("Frame in use for loading document ..."),static_cast< ::cppu::OWeakObject*>(this)); } // If no load proccesses could be detected ... ask controller for his agreement. @@ -1841,7 +1841,7 @@ void SAL_CALL Frame::close( sal_Bool bDeliverOwnerShip ) throw( css::util::Close if (bComponentInside) { if ( ! setComponent(NULL,NULL) ) - throw css::util::CloseVetoException(DECLARE_ASCII("Controller disagree with that ..."),static_cast<::cppu::OWeakObject*>(this)); + throw css::util::CloseVetoException(DECLARE_ASCII("Controller disagree with that ..."),static_cast< ::cppu::OWeakObject*>(this)); } // If closing is allowed ... inform all istener and dispose this frame! |