head 1.2; access; symbols; locks; strict; comment @// @; 1.2 date 2003.10.28.20.59.05; author krion; state dead; branches; next 1.1; 1.1 date 2003.09.29.19.48.33; author marcus; state Exp; branches; next ; desc @@ 1.2 log @- Update to version 1.56 PR: 58629 Submitted by: Ports Fury @ text @--- PlatGTK.cxx.orig Sun Sep 28 12:41:04 2003 +++ PlatGTK.cxx Sun Sep 28 12:42:27 2003 @@@@ -1034,7 +1034,7 @@@@ static char *UTF8FromIconv(iconv_t iconvh, const char *s, int len) { if (iconvh != ((iconv_t)(-1))) { char *utfForm = new char[len*3+1]; - char *pin = const_cast(s); + const char *pin = s; size_t inLeft = len; char *pout = utfForm; size_t outLeft = len*3+1; @@@@ -1051,7 +1051,7 @@@@ static size_t MultiByteLenFromIconv(iconv_t iconvh, const char *s, size_t len) { for (size_t lenMB=1; (lenMB<4) && (lenMB <= len); lenMB++) { char wcForm[2]; - char *pin = const_cast(s); + const char *pin = s; size_t inLeft = lenMB; char *pout = wcForm; size_t outLeft = 2; @ 1.1 log @Update to 1.55. PR: 57362 Submitted by: KATO Tsuguru @ text @@