You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2002/07/26 22:28:04 UTC

cvs commit: xml-xerces/c/src/xercesc/dom/impl DOMElementImpl.cpp

knoaman     2002/07/26 13:28:03

  Modified:    c/src/xercesc/dom/impl DOMElementImpl.cpp
  Log:
  Use XMLSSize_t instead of XMLSize_t.
  
  Revision  Changes    Path
  1.9       +4 -4      xml-xerces/c/src/xercesc/dom/impl/DOMElementImpl.cpp
  
  Index: DOMElementImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/impl/DOMElementImpl.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- DOMElementImpl.cpp	19 Jul 2002 20:48:37 -0000	1.8
  +++ DOMElementImpl.cpp	26 Jul 2002 20:28:03 -0000	1.9
  @@ -207,7 +207,7 @@
           throw DOMException(
                DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
   
  -    XMLSize_t i = fAttributes->findNamePoint(nam);
  +    XMLSSize_t i = fAttributes->findNamePoint(nam);
       if (i >= 0)
       {
           DOMNode *att = fAttributes->removeNamedItemAt(i);
  @@ -227,7 +227,7 @@
   
       // Since there is no removeAttributeNodeNS, check if this oldAttr has NS or not
       const XMLCh* localName = oldAttr->getLocalName();
  -    XMLSize_t i = 0;
  +    XMLSSize_t i = 0;
       if (localName)
           i = fAttributes->findNamePoint(oldAttr->getNamespaceURI(), localName);
       else
  @@ -335,7 +335,7 @@
           throw DOMException(
           DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
   
  -    XMLSize_t i = fAttributes->findNamePoint(fNamespaceURI, fLocalName);
  +    XMLSSize_t i = fAttributes->findNamePoint(fNamespaceURI, fLocalName);
       if (i >= 0)
       {
           DOMNode *att = fAttributes->removeNamedItemAt(i);
  
  
  

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