peiyongz 2003/03/09 09:03:25 Modified: c/src/xercesc/util/Transcoders/IconvGNU IconvGNUTransService.cpp Log: PanicHandler Revision Changes Path 1.5 +6 -3 xml-xerces/c/src/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.cpp Index: IconvGNUTransService.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- IconvGNUTransService.cpp 31 Dec 2002 18:42:54 -0000 1.4 +++ IconvGNUTransService.cpp 9 Mar 2003 17:03:25 -0000 1.5 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.5 2003/03/09 17:03:25 peiyongz + * PanicHandler + * * Revision 1.4 2002/12/31 18:42:54 tng * [Bug 15608] IconvLCPTranscoder::transcode() is wrong at wcstombs() usage. * @@ -230,7 +233,7 @@ fCDTo(cd_to), fCDFrom(cd_from) { if (fCDFrom == (iconv_t) -1 || fCDTo == (iconv_t) -1) { - XMLPlatformUtils::panic (XMLPlatformUtils::Panic_NoTransService); + XMLPlatformUtils::panic (PanicHandler::Panic_NoTransService); } } @@ -482,7 +485,7 @@ if (gIconvMutex == NULL) { gIconvMutex = new XMLMutex; if (gIconvMutex == NULL) - XMLPlatformUtils::panic (XMLPlatformUtils::Panic_NoTransService); + XMLPlatformUtils::panic (PanicHandler::Panic_NoTransService); } #endif @@ -545,7 +548,7 @@ } if (fUnicodeCP == NULL || cdTo() == (iconv_t)-1 || cdFrom() == (iconv_t)-1) - XMLPlatformUtils::panic (XMLPlatformUtils::Panic_NoTransService); + XMLPlatformUtils::panic (PanicHandler::Panic_NoTransService); } IconvGNUTransService::~IconvGNUTransService()
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]