diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-03-12 12:28:14 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-03-12 12:28:14 +0000 |
commit | 40b79cab484d2f5f70962e96696ed5f3645f1c8e (patch) | |
tree | 90ca4d10cb0b2962cb0544b94f2a2d5963b534dd /cppu/source/uno/destr.hxx | |
parent | ad5b1f6a013e3c9c4623fc35360faec44de50386 (diff) |
OSL_ENSHURE replaced by OSL_ENSURE
Diffstat (limited to 'cppu/source/uno/destr.hxx')
-rw-r--r-- | cppu/source/uno/destr.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cppu/source/uno/destr.hxx b/cppu/source/uno/destr.hxx index 5ae40624530b..d8b2f70bfc47 100644 --- a/cppu/source/uno/destr.hxx +++ b/cppu/source/uno/destr.hxx @@ -2,9 +2,9 @@ * * $RCSfile: destr.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dbo $ $Date: 2001-03-09 12:10:57 $ + * last change: $Author: jl $ $Date: 2001-03-12 13:27:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -137,12 +137,12 @@ inline void __destructAny( ::typelib_typedescriptionreference_release( *(typelib_TypeDescriptionReference **)pAny->pData ); break; case typelib_TypeClass_ANY: - OSL_ENSHURE( sal_False, "### unexpected nested any!" ); + OSL_ENSURE( sal_False, "### unexpected nested any!" ); ::uno_any_destruct( (uno_Any *)pAny->pData, release ); break; #ifdef CPPU_ASSERTIONS case typelib_TypeClass_TYPEDEF: - OSL_ENSHURE( sal_False, "### unexpected typedef!" ); + OSL_ENSURE( sal_False, "### unexpected typedef!" ); break; #endif case typelib_TypeClass_STRUCT: @@ -245,7 +245,7 @@ inline sal_Int32 __destructElements( return sizeof(int); #ifdef CPPU_ASSERTIONS case typelib_TypeClass_TYPEDEF: - OSL_ENSHURE( sal_False, "### unexpected typedef!" ); + OSL_ENSURE( sal_False, "### unexpected typedef!" ); break; #endif case typelib_TypeClass_STRUCT: @@ -298,7 +298,7 @@ inline sal_Int32 __destructElements( } #ifdef CPPU_ASSERTIONS case typelib_TypeClass_ARRAY: - OSL_ENSHURE( sal_False, "### unexpected array!" ); + OSL_ENSURE( sal_False, "### unexpected array!" ); break; #endif case typelib_TypeClass_INTERFACE: @@ -377,7 +377,7 @@ inline void __destructData( break; #ifdef CPPU_ASSERTIONS case typelib_TypeClass_TYPEDEF: - OSL_ENSHURE( sal_False, "### unexpected typedef!" ); + OSL_ENSURE( sal_False, "### unexpected typedef!" ); break; #endif case typelib_TypeClass_STRUCT: |