INTEGRATION: CWS kso14 (1.3.84); FILE MERGED

2005/01/19 16:39:02 sb 1.3.84.1: #i40979# Get rid of GCC warnings: use of cast expression as lvalue is deprecated; patch supplied by cmc.
This commit is contained in:
Oliver Bolte 2005-01-27 10:15:34 +00:00
parent 52d81db0e7
commit a64ef795e7

View file

@ -2,9 +2,9 @@
* *
* $RCSfile: convertiso2022kr.c,v $ * $RCSfile: convertiso2022kr.c,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: rt $ $Date: 2004-06-17 11:41:32 $ * last change: $Author: obo $ $Date: 2005-01-27 11:15:34 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@ -161,7 +161,7 @@ sal_Size ImplConvertIso2022KrToUnicode(ImplTextConverterData const * pData,
for (; nConverted < nSrcBytes; ++nConverted) for (; nConverted < nSrcBytes; ++nConverted)
{ {
sal_Bool bUndefined = sal_True; sal_Bool bUndefined = sal_True;
sal_uInt32 nChar = *((sal_uChar const *) pSrcBuf)++; sal_uInt32 nChar = *(sal_uChar const *) pSrcBuf++;
switch (eState) switch (eState)
{ {
case IMPL_ISO_2022_KR_TO_UNICODE_STATE_ASCII: case IMPL_ISO_2022_KR_TO_UNICODE_STATE_ASCII: