You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jp...@locus.apache.org on 2000/07/06 01:06:52 UTC

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

jpolast     00/07/05 16:06:52

  Modified:    c/src/dom AttrImpl.cpp
  Log:
  specified() fix in constructor.
  
  Revision  Changes    Path
  1.20      +6 -2      xml-xerces/c/src/dom/AttrImpl.cpp
  
  Index: AttrImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/dom/AttrImpl.cpp,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- AttrImpl.cpp	2000/06/02 00:06:02	1.19
  +++ AttrImpl.cpp	2000/07/05 23:06:51	1.20
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: AttrImpl.cpp,v 1.19 2000/06/02 00:06:02 andyh Exp $
  + * $Id: AttrImpl.cpp,v 1.20 2000/07/05 23:06:51 jpolast Exp $
    */
   
   #include "AttrImpl.hpp"
  @@ -79,7 +79,11 @@
   {
       name = other.name.clone();
   	
  -    specified(true);
  +	if (other.specified())
  +		specified(true);
  +	else
  +		specified(false);
  +
       if (other.idAttr())
       {
           idAttr(true);