PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2730

*** shadow/2730 Mon Jul 23 05:00:04 2001
--- shadow/2730.tmp.13313       Sun Sep  2 15:50:04 2001
***************
*** 34,37 ****
  methods is defined as long instead of int - like it is defined in XMLMsgLoader, 
  which ICUMsgLoader inherits from.
  
! Also, the same problems occur in xerces-1.5.0 aswell.
--- 34,58 ----
  methods is defined as long instead of int - like it is defined in XMLMsgLoader, 
  which ICUMsgLoader inherits from.
  
! Also, the same problems occur in xerces-1.5.0 aswell.
! 
! ------- Additional Comments From [EMAIL PROTECTED]  2001-09-02 15:50 -------
! To get this to compile with ICU 1.8:
! 
! replace:
!     UnicodeString keyVal(keyStr);
!     const UnicodeString* msgString = fBundle->getStringEx(keyVal, err);
! 
!     if (!msgString)
!         return false;
! 
! with:
! 
!     UnicodeString msgString = fBundle->getStringEx(XMLString::transcode(keyStr),
! err);
! 
! also the uses of msgString-> need to be modified to msgString.
! 
! the tmpPath issue is particularily confusing because it is not used anywhere in
! the Xerces code or the ICU code. However, setting it 0 (zero) forces ICU to
! calculate a path.

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

Reply via email to