From 58f0bda3440680b4e3f99803035828a7959256e1 Mon Sep 17 00:00:00 2001 From: Joachim Lingner Date: Thu, 22 Mar 2001 13:28:22 +0000 Subject: OSL_ENSHURE replaced by OSL_ENSURE --- dtrans/source/aqua/aqua_service.cxx | 6 +++--- dtrans/source/cnttype/mctfentry.cxx | 6 +++--- dtrans/source/generic/dtrans.cxx | 6 +++--- dtrans/source/generic/generic_clipboard.cxx | 10 +++++----- dtrans/source/win32/clipb/wcbentry.cxx | 6 +++--- dtrans/source/win32/ftransl/ftranslentry.cxx | 6 +++--- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/dtrans/source/aqua/aqua_service.cxx b/dtrans/source/aqua/aqua_service.cxx index daf191997b96..efeb8d2c903a 100644 --- a/dtrans/source/aqua/aqua_service.cxx +++ b/dtrans/source/aqua/aqua_service.cxx @@ -2,9 +2,9 @@ * * $RCSfile: aqua_service.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: pluby $ $Date: 2001-03-16 16:50:18 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:24:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -115,7 +115,7 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey } catch( InvalidRegistryException& ) { - OSL_ENSHURE(sal_False, "InvalidRegistryException caught"); + OSL_ENSURE(sal_False, "InvalidRegistryException caught"); bRetVal = sal_False; } } diff --git a/dtrans/source/cnttype/mctfentry.cxx b/dtrans/source/cnttype/mctfentry.cxx index f2cadf98cc0e..ce79f81f42bc 100644 --- a/dtrans/source/cnttype/mctfentry.cxx +++ b/dtrans/source/cnttype/mctfentry.cxx @@ -2,9 +2,9 @@ * * $RCSfile: mctfentry.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tra $ $Date: 2001-02-13 13:04:11 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:25:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -166,7 +166,7 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey } catch( InvalidRegistryException& ) { - OSL_ENSHURE(sal_False, "InvalidRegistryException caught"); + OSL_ENSURE(sal_False, "InvalidRegistryException caught"); bRetVal = sal_False; } } diff --git a/dtrans/source/generic/dtrans.cxx b/dtrans/source/generic/dtrans.cxx index 1219f993ac74..3b12fe950859 100644 --- a/dtrans/source/generic/dtrans.cxx +++ b/dtrans/source/generic/dtrans.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dtrans.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mh $ $Date: 2001-01-31 15:36:59 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:26:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -110,7 +110,7 @@ sal_Bool SAL_CALL component_writeInfo(void * pServiceManager, void * pRegistryKe } catch (InvalidRegistryException &) { - OSL_ENSHURE( sal_False, "### InvalidRegistryException!" ); + OSL_ENSURE( sal_False, "### InvalidRegistryException!" ); } } diff --git a/dtrans/source/generic/generic_clipboard.cxx b/dtrans/source/generic/generic_clipboard.cxx index dd8e2fb2c970..73b386309a14 100644 --- a/dtrans/source/generic/generic_clipboard.cxx +++ b/dtrans/source/generic/generic_clipboard.cxx @@ -2,9 +2,9 @@ * * $RCSfile: generic_clipboard.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mh $ $Date: 2001-01-31 15:37:00 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:26:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -216,8 +216,8 @@ void SAL_CALL OClipboard::addClipboardListener( const Reference< XClipboardListe throw(RuntimeException) { MutexGuard aGuard( rBHelper.rMutex ); - OSL_ENSHURE( !rBHelper.bInDispose, "do not add listeners in the dispose call" ); - OSL_ENSHURE( !rBHelper.bDisposed, "object is disposed" ); + OSL_ENSURE( !rBHelper.bInDispose, "do not add listeners in the dispose call" ); + OSL_ENSURE( !rBHelper.bDisposed, "object is disposed" ); if (!rBHelper.bInDispose && !rBHelper.bDisposed) rBHelper.aLC.addInterface( getCppuType( (const ::com::sun::star::uno::Reference< XClipboardListener > *) 0), listener ); } @@ -228,7 +228,7 @@ void SAL_CALL OClipboard::removeClipboardListener( const Reference< XClipboardLi throw(RuntimeException) { MutexGuard aGuard( rBHelper.rMutex ); - OSL_ENSHURE( !rBHelper.bDisposed, "object is disposed" ); + OSL_ENSURE( !rBHelper.bDisposed, "object is disposed" ); if (!rBHelper.bInDispose && !rBHelper.bDisposed) rBHelper.aLC.removeInterface( getCppuType( (const Reference< XClipboardListener > *) 0 ), listener ); \ } diff --git a/dtrans/source/win32/clipb/wcbentry.cxx b/dtrans/source/win32/clipb/wcbentry.cxx index 62ce0925d6fe..9df721fc10a2 100644 --- a/dtrans/source/win32/clipb/wcbentry.cxx +++ b/dtrans/source/win32/clipb/wcbentry.cxx @@ -2,9 +2,9 @@ * * $RCSfile: wcbentry.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: tra $ $Date: 2001-03-02 15:36:46 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:27:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -161,7 +161,7 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey } catch( InvalidRegistryException& ) { - OSL_ENSHURE(sal_False, "InvalidRegistryException caught"); + OSL_ENSURE(sal_False, "InvalidRegistryException caught"); bRetVal = sal_False; } } diff --git a/dtrans/source/win32/ftransl/ftranslentry.cxx b/dtrans/source/win32/ftransl/ftranslentry.cxx index 4d87de8806ce..6c6e9be9913e 100644 --- a/dtrans/source/win32/ftransl/ftranslentry.cxx +++ b/dtrans/source/win32/ftransl/ftranslentry.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ftranslentry.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tra $ $Date: 2001-02-27 07:38:20 $ + * last change: $Author: jl $ $Date: 2001-03-22 14:28:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -166,7 +166,7 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey } catch( InvalidRegistryException& ) { - OSL_ENSHURE(sal_False, "InvalidRegistryException caught"); + OSL_ENSURE(sal_False, "InvalidRegistryException caught"); bRetVal = sal_False; } } -- cgit v1.2.3