dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Xml NodeList.cs,1.2,1.3 XmlNod


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Xml NodeList.cs,1.2,1.3 XmlNodeList.cs,1.3,1.4
Date: Thu, 21 Nov 2002 00:15:46 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Xml
In directory subversions:/tmp/cvs-serv31321/System.Xml

Modified Files:
        NodeList.cs XmlNodeList.cs 
Log Message:


Rename "Itemx" to "Item" now that "IndexerName" works.


Index: NodeList.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/NodeList.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** NodeList.cs 17 Sep 2002 22:39:24 -0000      1.2
--- NodeList.cs 21 Nov 2002 05:15:43 -0000      1.3
***************
*** 57,61 ****
  
        // Get a particular item within this node list.
!       public override XmlNode Itemx(int i)
                        {
                                if(i >= 0 && i < count)
--- 57,61 ----
  
        // Get a particular item within this node list.
!       public override XmlNode Item(int i)
                        {
                                if(i >= 0 && i < count)

Index: XmlNodeList.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/XmlNodeList.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** XmlNodeList.cs      20 Sep 2002 03:22:07 -0000      1.3
--- XmlNodeList.cs      21 Nov 2002 05:15:43 -0000      1.4
***************
*** 45,54 ****
                                get
                                {
!                                       return Itemx(i);
                                }
                        }
  
        // Get a particular item within this node list.
!       public abstract XmlNode Itemx(int i);
  
        // Implement the "IEnumerable" interface.
--- 45,54 ----
                                get
                                {
!                                       return Item(i);
                                }
                        }
  
        // Get a particular item within this node list.
!       public abstract XmlNode Item(int i);
  
        // Implement the "IEnumerable" interface.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]