peiyongz    2003/03/09 08:41:20

  Modified:    c/src/xercesc/util/MsgLoaders/ICU ICUMsgLoader.cpp
  Log:
  PanicHandler
  
  Revision  Changes    Path
  1.15      +7 -4      xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.cpp
  
  Index: ICUMsgLoader.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.cpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ICUMsgLoader.cpp  20 Feb 2003 18:07:46 -0000      1.14
  +++ ICUMsgLoader.cpp  9 Mar 2003 16:41:20 -0000       1.15
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.15  2003/03/09 16:41:20  peiyongz
  + * PanicHandler
  + *
    * Revision 1.14  2003/02/20 18:07:46  peiyongz
    * Bug#7077: build error message shared library for ICUMsgLoader
    *
  @@ -205,7 +208,7 @@
           !XMLString::equals(msgDomain, XMLUni::fgXMLDOMMsgDomain) &&
           !XMLString::equals(msgDomain, XMLUni::fgValidityDomain)   )
       {
  -        XMLPlatformUtils::panic(XMLPlatformUtils::Panic_UnknownMsgDomain);
  +        XMLPlatformUtils::panic(PanicHandler::Panic_UnknownMsgDomain);
       }
   
       /***
  @@ -286,12 +289,12 @@
               fLocaleBundle = ures_open("XercesMessages", XMLMsgLoader::getLocale(), 
&err);
               if (!U_SUCCESS(err) || fLocaleBundle == NULL)
               {
  -                 XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  +                 XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
               }
           }
           else
           {                       
  -            XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  +            XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
           }        
       }
   
  @@ -303,7 +306,7 @@
       fDomainBundle = ures_getByKey(fLocaleBundle, domainName, NULL, &err);
       if (!U_SUCCESS(err) || fDomainBundle == NULL)
       {
  -        XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  +        XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
       }
   
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to