You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/06/09 08:25:50 UTC

cvs commit: ws-axis/c/src/soap SoapDeSerializer.cpp

samisa      2005/06/08 23:25:50

  Modified:    c/src/soap SoapDeSerializer.cpp
  Log:
  Fixed the problem of usong  Double class in place of Decimal class in getElementAsDecimal method
  AXISCPP-675
  
  Revision  Changes    Path
  1.166     +2 -2      ws-axis/c/src/soap/SoapDeSerializer.cpp
  
  Index: SoapDeSerializer.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapDeSerializer.cpp,v
  retrieving revision 1.165
  retrieving revision 1.166
  diff -u -r1.165 -r1.166
  --- SoapDeSerializer.cpp	1 Jun 2005 14:22:55 -0000	1.165
  +++ SoapDeSerializer.cpp	9 Jun 2005 06:25:50 -0000	1.166
  @@ -2076,9 +2076,9 @@
       SoapDeSerializer::getElementAsDecimal (const AxisChar * pName,
                                              const AxisChar * pNamespace)
   {
  -    Double simpleType;
  +    Decimal simpleType;
       getElement(pName, pNamespace, &simpleType);
  -    return simpleType.getDouble();
  +    return simpleType.getDecimal();
   }
   
   xsd__string