knoaman     2002/10/15 11:04:31

  Modified:    c/src/xercesc/validators/datatype DatatypeValidator.cpp
  Log:
  Bug [13485]: incorrect return from getWSstring
  
  Revision  Changes    Path
  1.2       +5 -2      
xml-xerces/c/src/xercesc/validators/datatype/DatatypeValidator.cpp
  
  Index: DatatypeValidator.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/validators/datatype/DatatypeValidator.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DatatypeValidator.cpp     1 Feb 2002 22:22:40 -0000       1.1
  +++ DatatypeValidator.cpp     15 Oct 2002 18:04:31 -0000      1.2
  @@ -56,8 +56,11 @@
   
   /*
    * $Log$
  - * Revision 1.1  2002/02/01 22:22:40  peiyongz
  - * Initial revision
  + * Revision 1.2  2002/10/15 18:04:31  knoaman
  + * Bug [13485]: incorrect return from getWSstring
  + *
  + * Revision 1.1.1.1  2002/02/01 22:22:40  peiyongz
  + * sane_include
    *
    * Revision 1.7  2001/06/20 17:56:56  peiyongz
    * support for "fixed" option on constrainning facets
  @@ -119,9 +122,9 @@
       case PRESERVE:
            return SchemaSymbols::fgWS_PRESERVE;
       case REPLACE:
  -         return SchemaSymbols::fgWS_COLLAPSE;
  -    case COLLAPSE:
            return SchemaSymbols::fgWS_REPLACE;
  +    case COLLAPSE:
  +         return SchemaSymbols::fgWS_COLLAPSE;
       default: 
            return SchemaSymbols::fgWS_PRESERVE;
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to