dbertoni    01/11/08 21:21:18

  Modified:    c/src/PlatformSupport DOMStringHelper.cpp
  Log:
  Fixed bug in DoubleToDOMString().
  
  Revision  Changes    Path
  1.67      +1 -1      xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp
  
  Index: DOMStringHelper.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- DOMStringHelper.cpp       2001/10/10 19:35:35     1.66
  +++ DOMStringHelper.cpp       2001/11/09 05:21:18     1.67
  @@ -1485,7 +1485,7 @@
        }
        else if (DoubleSupport::isNegativeInfinity(theDouble) == true)
        {
  -             theResult = theNegativeInfinityString;
  +             append(theResult, theNegativeInfinityString);
        }
        else if (DoubleSupport::isPositiveZero(theDouble) == true)
        {
  
  
  

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

Reply via email to