You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by le...@apache.org on 2001/05/10 18:09:30 UTC

cvs commit: xml-xerces/c/src/dom AttrNSImpl.cpp

lehors      01/05/10 09:09:29

  Modified:    c/src/dom AttrNSImpl.cpp
  Log:
  fixed typo in constructor - bug #1605
  
  Revision  Changes    Path
  1.9       +2 -2      xml-xerces/c/src/dom/AttrNSImpl.cpp
  
  Index: AttrNSImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/dom/AttrNSImpl.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- AttrNSImpl.cpp	2001/01/25 23:58:26	1.8
  +++ AttrNSImpl.cpp	2001/05/10 16:09:25	1.9
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: AttrNSImpl.cpp,v 1.8 2001/01/25 23:58:26 lehors Exp $
  + * $Id: AttrNSImpl.cpp,v 1.9 2001/05/10 16:09:25 lehors Exp $
    */
   
   #include <util/XMLUniDefs.hpp>
  @@ -65,7 +65,7 @@
   
   
   AttrNSImpl::AttrNSImpl(DocumentImpl *ownerDoc, const DOMString &nam) :
  -    AttrImpl(ownerDoc, name)
  +    AttrImpl(ownerDoc, nam)
   {
       this->namespaceURI=null;	//DOM Level 2
       this->localName=null;       //DOM Level 2
  
  
  

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