You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2004/04/06 03:03:25 UTC

cvs commit: xml-xalan/c/src/xalanc/ICUBridge ICUFormatNumberFunctor.cpp

dbertoni    2004/04/05 18:03:25

  Modified:    c/src/xalanc/ICUBridge ICUFormatNumberFunctor.cpp
  Log:
  Cleaned up compiler warning.
  
  Revision  Changes    Path
  1.4       +2 -1      xml-xalan/c/src/xalanc/ICUBridge/ICUFormatNumberFunctor.cpp
  
  Index: ICUFormatNumberFunctor.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/ICUBridge/ICUFormatNumberFunctor.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ICUFormatNumberFunctor.cpp	10 Mar 2004 20:45:30 -0000	1.3
  +++ ICUFormatNumberFunctor.cpp	6 Apr 2004 01:03:25 -0000	1.4
  @@ -293,7 +293,8 @@
   		theFormatter->format(theNumber, theUnicodeResult);
   		ICUBridge::UnicodeStringToXalanDOMString(theUnicodeResult, theResult);
   	}
  -	return U_SUCCESS(theStatus);
  +
  +    return U_SUCCESS(theStatus) ? true : false;
   }
   
   XalanDOMString
  
  
  

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