You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by pr...@apache.org on 2005/03/04 18:01:06 UTC

cvs commit: ws-axis/c/src/engine/client Stub.cpp

prestonf    2005/03/04 09:01:06

  Modified:    c/src/engine/client Stub.cpp
  Log:
  Hi All,
  I think this will complete what needs to be done for AXISCPP-375.
  
  Regards,
  Fred Preston.
  
  Revision  Changes    Path
  1.39      +2 -2      ws-axis/c/src/engine/client/Stub.cpp
  
  Index: Stub.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/client/Stub.cpp,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- Stub.cpp	4 Mar 2005 14:54:55 -0000	1.38
  +++ Stub.cpp	4 Mar 2005 17:01:06 -0000	1.39
  @@ -260,9 +260,9 @@
       }
   
   	if (NULL!=pUri)
  -		pAttribute = new Attribute(pLocalname, pPrefix, pUri, pValue);
  +		pAttribute = new Attribute((std::list<Attribute*>)NULL, pLocalname, pPrefix, pUri, pValue);
   	else
  -		pAttribute = new Attribute(pLocalname, pPrefix, pValue);
  +		pAttribute = new Attribute((std::list<Attribute*>)NULL, pLocalname, pPrefix, pValue);
   	m_vSOAPMethodAttributes.push_back(pAttribute);
       m_viCurrentSOAPMethodAttribute = m_vSOAPMethodAttributes.begin();
   }