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 na...@apache.org on 2008/10/09 17:24:17 UTC

svn commit: r703182 - in /webservices/axis/trunk/c/src/common: ArrayBean.cpp AxisUserAPI.cpp

Author: nadiramra
Date: Thu Oct  9 08:24:17 2008
New Revision: 703182

URL: http://svn.apache.org/viewvc?rev=703182&view=rev
Log:
AXISCPP-1002 - Support for xsd:anyType and remove duplicate code.

Modified:
    webservices/axis/trunk/c/src/common/ArrayBean.cpp
    webservices/axis/trunk/c/src/common/AxisUserAPI.cpp

Modified: webservices/axis/trunk/c/src/common/ArrayBean.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/common/ArrayBean.cpp?rev=703182&r1=703181&r2=703182&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/common/ArrayBean.cpp (original)
+++ webservices/axis/trunk/c/src/common/ArrayBean.cpp Thu Oct  9 08:24:17 2008
@@ -66,7 +66,7 @@
         {
             for (int count = 0 ; count < m_nSize ; count++)
             	if (((void **) m_value.sta)[count] != NULL)
-            		Axis:AxisDelete(((void **) m_value.sta)[count], m_type);
+            		Axis::AxisDelete(((void **) m_value.sta)[count], m_type);
         }
         delete [] m_value.sta;
     }

Modified: webservices/axis/trunk/c/src/common/AxisUserAPI.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/common/AxisUserAPI.cpp?rev=703182&r1=703181&r2=703182&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/common/AxisUserAPI.cpp (original)
+++ webservices/axis/trunk/c/src/common/AxisUserAPI.cpp Thu Oct  9 08:24:17 2008
@@ -831,7 +831,7 @@
     {
         for (int count = 0 ; count < m_Size ; count++)
             if (m_Array[count] != NULL)
-            	Axis:AxisDelete(m_Array[count], m_Type);
+            	Axis::AxisDelete(m_Array[count], m_Type);
 
         m_Size = 0;
     }