diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2004-07-23 13:40:07 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2004-07-23 13:40:07 +0000 |
commit | 61d5fcf5d775bdcce93f42109930086a101dcbf0 (patch) | |
tree | 196b13b14a3905e57c913d4f572958f9376a76cf /cppu/source/typelib | |
parent | 5ed480ed8b10fe9037e379e416ad81dcb04e78ee (diff) |
INTEGRATION: CWS sb20 (1.11.6); FILE MERGED
2004/07/12 10:40:58 sb 1.11.6.2: RESYNC: (1.11-1.12); FILE MERGED
2004/07/02 12:12:16 sb 1.11.6.1: #i29740# Improved constness.
Diffstat (limited to 'cppu/source/typelib')
-rw-r--r-- | cppu/source/typelib/static_types.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/typelib/static_types.cxx b/cppu/source/typelib/static_types.cxx index abb7a9cc9..519bc4c2b 100644 --- a/cppu/source/typelib/static_types.cxx +++ b/cppu/source/typelib/static_types.cxx @@ -2,9 +2,9 @@ * * $RCSfile: static_types.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: rt $ $Date: 2004-06-17 12:45:58 $ + * last change: $Author: rt $ $Date: 2004-07-23 14:40:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -422,7 +422,7 @@ void init( typelib_TypeClass eTypeClass, const sal_Char * pTypeName, typelib_TypeDescriptionReference * pBaseType, sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers, - sal_Bool * pParameterizedTypes) + sal_Bool const * pParameterizedTypes) { OSL_ENSURE( typelib_TypeClass_STRUCT == eTypeClass || typelib_TypeClass_EXCEPTION == eTypeClass, "### unexpected type class!" ); @@ -515,7 +515,7 @@ void SAL_CALL typelib_static_struct_type_init( typelib_TypeDescriptionReference ** ppRef, const sal_Char * pTypeName, typelib_TypeDescriptionReference * pBaseType, sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers, - sal_Bool * pParameterizedTypes ) + sal_Bool const * pParameterizedTypes ) SAL_THROW_EXTERN_C() { init( |