You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2003/03/09 18:03:25 UTC

cvs commit: xml-xerces/c/src/xercesc/util/Transcoders/IconvGNU IconvGNUTransService.cpp

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: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org