INTEGRATION: CWS jl31 (1.10.16); FILE MERGED

2006/02/20 15:58:28 sb 1.10.16.1: #i62339# Forbid any unsigned types (i.e., not just UNSIGNED SHORT/LONG/HYPER, but also sequences of such) as type arguments of instantiated polymorphic struct types.
This commit is contained in:
Rüdiger Timm 2006-03-09 09:48:41 +00:00
parent d246a0aef9
commit f7136990bc

View file

@ -4,9 +4,9 @@
* *
* $RCSfile: errorhandler.cxx,v $ * $RCSfile: errorhandler.cxx,v $
* *
* $Revision: 1.10 $ * $Revision: 1.11 $
* *
* last change: $Author: rt $ $Date: 2005-09-07 18:10:32 $ * last change: $Author: rt $ $Date: 2006-03-09 10:48:41 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@ -151,7 +151,7 @@ static const sal_Char* errorCodeToMessage(ErrorCode eCode)
case EIDL_READONLY_ATTRIBUTE_SET_EXCEPTIONS: case EIDL_READONLY_ATTRIBUTE_SET_EXCEPTIONS:
return "a readonly attribute may not have a setter raises clause"; return "a readonly attribute may not have a setter raises clause";
case EIDL_UNSIGNED_TYPE_ARGUMENT: case EIDL_UNSIGNED_TYPE_ARGUMENT:
return "an unsigned integer type cannot be used as a type argument"; return "an unsigned type cannot be used as a type argument";
case EIDL_WRONG_NUMBER_OF_TYPE_ARGUMENTS: case EIDL_WRONG_NUMBER_OF_TYPE_ARGUMENTS:
return return
"the number of given type arguments does not match the expected" "the number of given type arguments does not match the expected"