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 2002/11/07 00:35:09 UTC

cvs commit: xml-xalan/c/src/XalanSourceTree XalanSourceTreeAttr.hpp XalanSourceTreeComment.hpp XalanSourceTreeElement.hpp XalanSourceTreeProcessingInstruction.hpp XalanSourceTreeText.hpp

dbertoni    2002/11/06 15:35:09

  Modified:    c/src/XalanSourceTree XalanSourceTreeAttr.hpp
                        XalanSourceTreeComment.hpp
                        XalanSourceTreeElement.hpp
                        XalanSourceTreeProcessingInstruction.hpp
                        XalanSourceTreeText.hpp
  Log:
  Fixed types for index data members.
  
  Revision  Changes    Path
  1.4       +5 -5      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeAttr.hpp
  
  Index: XalanSourceTreeAttr.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeAttr.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XalanSourceTreeAttr.hpp	23 Feb 2002 03:16:05 -0000	1.3
  +++ XalanSourceTreeAttr.hpp	6 Nov 2002 23:35:09 -0000	1.4
  @@ -525,7 +525,7 @@
   	}
   
   	void
  -	setIndex(unsigned int	theIndex)
  +	setIndex(unsigned long	theIndex)
   	{
   		m_index = theIndex;
   	}
  @@ -547,13 +547,13 @@
   
   
   	// Data members...
  -	const XalanDOMString&				m_name;
  +	const XalanDOMString&		m_name;
   
  -	const XalanDOMString&				m_value;
  +	const XalanDOMString&		m_value;
   
  -	XalanSourceTreeElement*				m_ownerElement;
  +	XalanSourceTreeElement*		m_ownerElement;
   
  -	unsigned int						m_index;
  +	unsigned long				m_index;
   };
   
   
  
  
  
  1.6       +2 -2      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeComment.hpp
  
  Index: XalanSourceTreeComment.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeComment.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XalanSourceTreeComment.hpp	23 Feb 2002 03:15:33 -0000	1.5
  +++ XalanSourceTreeComment.hpp	6 Nov 2002 23:35:09 -0000	1.6
  @@ -632,7 +632,7 @@
   	appendSiblingNode(XalanSourceTreeText*	theSibling);
   
   	void
  -	setIndex(unsigned int	theIndex)
  +	setIndex(unsigned long	theIndex)
   	{
   		m_index = theIndex;
   	}
  @@ -664,7 +664,7 @@
   
   	XalanNode*						m_nextSibling;
   
  -	unsigned int					m_index;
  +	unsigned long					m_index;
   
   	static const XalanDOMString&	s_nameString;
   };
  
  
  
  1.7       +4 -4      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeElement.hpp
  
  Index: XalanSourceTreeElement.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeElement.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XalanSourceTreeElement.hpp	23 Feb 2002 03:13:09 -0000	1.6
  +++ XalanSourceTreeElement.hpp	6 Nov 2002 23:35:09 -0000	1.7
  @@ -786,19 +786,19 @@
   	appendChildNode(XalanSourceTreeText*	theChild);
   
   	void
  -	setIndex(unsigned int	theIndex)
  +	setIndex(unsigned long	theIndex)
   	{
   		m_index = theIndex;
   	}
   
  -	unsigned int
  +	AttributesCountType
   	getAttributeCount() const
   	{
   		return m_attributeCount;
   	}
   
   	XalanSourceTreeAttr*
  -	getAttributeByIndex(unsigned int	index) const
  +	getAttributeByIndex(AttributesCountType		index) const
   	{
   		return index < m_attributeCount ? m_attributes[index] : 0;
   	}
  @@ -880,7 +880,7 @@
   
   	XalanNode*						m_firstChild;
   
  -	unsigned int					m_index;
  +	unsigned long					m_index;
   
   	XalanSourceTreeAttr* const *	m_attributes;
   
  
  
  
  1.5       +2 -2      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeProcessingInstruction.hpp
  
  Index: XalanSourceTreeProcessingInstruction.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeProcessingInstruction.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XalanSourceTreeProcessingInstruction.hpp	23 Feb 2002 03:15:33 -0000	1.4
  +++ XalanSourceTreeProcessingInstruction.hpp	6 Nov 2002 23:35:09 -0000	1.5
  @@ -526,7 +526,7 @@
   	appendSiblingNode(XalanSourceTreeText*	theSibling);
   
   	void
  -	setIndex(unsigned int	theIndex)
  +	setIndex(unsigned long	theIndex)
   	{
   		m_index = theIndex;
   	}
  @@ -560,7 +560,7 @@
   
   	XalanNode*					m_nextSibling;
   
  -	unsigned int				m_index;
  +	unsigned long				m_index;
   };
   
   
  
  
  
  1.5       +2 -2      xml-xalan/c/src/XalanSourceTree/XalanSourceTreeText.hpp
  
  Index: XalanSourceTreeText.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeText.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XalanSourceTreeText.hpp	23 Feb 2002 03:15:33 -0000	1.4
  +++ XalanSourceTreeText.hpp	6 Nov 2002 23:35:09 -0000	1.5
  @@ -651,7 +651,7 @@
   	appendSiblingNode(XalanSourceTreeText*	theSibling);
   
   	void
  -	setIndex(unsigned int	theIndex)
  +	setIndex(unsigned long	theIndex)
   	{
   		m_index = theIndex;
   	}
  @@ -681,7 +681,7 @@
   
   	XalanNode*						m_nextSibling;
   
  -	unsigned int					m_index;
  +	unsigned long					m_index;
   
   	static const XalanDOMString&	s_nameString;
   };
  
  
  

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