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 2001/09/27 00:30:41 UTC

cvs commit: xml-xalan/c/src/XPath XResultTreeFrag.cpp XResultTreeFrag.hpp

dbertoni    01/09/26 15:30:41

  Modified:    c/src/XPath XResultTreeFrag.cpp XResultTreeFrag.hpp
  Log:
  32/64-bit fixes.
  
  Revision  Changes    Path
  1.27      +3 -3      xml-xalan/c/src/XPath/XResultTreeFrag.cpp
  
  Index: XResultTreeFrag.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XResultTreeFrag.cpp,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- XResultTreeFrag.cpp	2001/09/26 20:58:46	1.26
  +++ XResultTreeFrag.cpp	2001/09/26 22:30:41	1.27
  @@ -295,14 +295,14 @@
   
   
   XalanNode*
  -XResultTreeFrag::NodeRefListBaseProxy::item(unsigned int	index) const
  +XResultTreeFrag::NodeRefListBaseProxy::item(size_type	index) const
   {
   	return m_xresultTreeFrag.item(index);
   }
   
   
   
  -unsigned int
  +XResultTreeFrag::NodeRefListBaseProxy::size_type
   XResultTreeFrag::NodeRefListBaseProxy::getLength() const
   {
   	return m_xresultTreeFrag.getLength();
  @@ -310,7 +310,7 @@
   
   
   
  -unsigned int
  +XResultTreeFrag::NodeRefListBaseProxy::size_type
   XResultTreeFrag::NodeRefListBaseProxy::indexOf(const XalanNode*	theNode) const
   {
   	return m_xresultTreeFrag.indexOf(theNode);
  
  
  
  1.25      +3 -3      xml-xalan/c/src/XPath/XResultTreeFrag.hpp
  
  Index: XResultTreeFrag.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XResultTreeFrag.hpp,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- XResultTreeFrag.hpp	2001/06/14 19:12:25	1.24
  +++ XResultTreeFrag.hpp	2001/09/26 22:30:41	1.25
  @@ -190,12 +190,12 @@
   		~NodeRefListBaseProxy();
   
   		virtual XalanNode*
  -		item(unsigned int	index) const;
  +		item(size_type	index) const;
   
  -		virtual unsigned int
  +		virtual size_type
   		getLength() const;
   
  -		virtual unsigned int
  +		virtual size_type
   		indexOf(const XalanNode*	theNode) const;
   
   	private:
  
  
  

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