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:05:01 UTC

cvs commit: xml-xerces/c/src/xercesc/validators/schema XSDErrorReporter.cpp

peiyongz    2003/03/09 09:05:01

  Modified:    c/src/xercesc/validators/schema XSDErrorReporter.cpp
  Log:
  PanicHandler
  
  Revision  Changes    Path
  1.10      +5 -2      xml-xerces/c/src/xercesc/validators/schema/XSDErrorReporter.cpp
  
  Index: XSDErrorReporter.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/schema/XSDErrorReporter.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSDErrorReporter.cpp	13 Jan 2003 16:13:37 -0000	1.9
  +++ XSDErrorReporter.cpp	9 Mar 2003 17:05:01 -0000	1.10
  @@ -56,6 +56,9 @@
   
   /**
     * $Log$
  +  * Revision 1.10  2003/03/09 17:05:01  peiyongz
  +  * PanicHandler
  +  *
     * Revision 1.9  2003/01/13 16:13:37  knoaman
     * We should load the validation message set.
     *
  @@ -134,7 +137,7 @@
       {
           XMLMsgLoader* t = XMLPlatformUtils::loadMsgSet(XMLUni::fgXMLErrDomain);
           if (!t)
  -            XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  +            XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
           else {
               if (XMLPlatformUtils::compareAndSwap((void **)&gErrMsgLoader, t, 0) != 0)
               {
  @@ -157,7 +160,7 @@
       {
           XMLMsgLoader* t = XMLPlatformUtils::loadMsgSet(XMLUni::fgValidityDomain);
           if (!t)
  -            XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  +            XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
           else {
               if (XMLPlatformUtils::compareAndSwap((void **)&gValidMsgLoader, t, 0) != 0)
               {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org