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

cvs commit: xml-xerces/c/tests/ParserTest ParserTest_Parser.cpp

roddey      00/01/24 17:02:12

  Modified:    c/tests/ParserTest ParserTest_Parser.cpp
  Log:
  More small fixes in the output from the recent change to get away from
  the util/xx streams.
  
  Revision  Changes    Path
  1.4       +6 -2      xml-xerces/c/tests/ParserTest/ParserTest_Parser.cpp
  
  Index: ParserTest_Parser.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/tests/ParserTest/ParserTest_Parser.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ParserTest_Parser.cpp	2000/01/21 23:58:06	1.3
  +++ ParserTest_Parser.cpp	2000/01/25 01:02:12	1.4
  @@ -56,6 +56,10 @@
   
   /**
    * $Log: ParserTest_Parser.cpp,v $
  + * Revision 1.4  2000/01/25 01:02:12  roddey
  + * More small fixes in the output from the recent change to get away from
  + * the util/xx streams.
  + *
    * Revision 1.3  2000/01/21 23:58:06  roddey
    * Initial move away from util streams was bad. Wide char APIs didn't allow enough
    * control to do canonical output, so changed to use std short char APIs.
  @@ -864,8 +868,8 @@
               entName = &systemId[ofs + 1];
   
           cout << lineNum << "/" << colNum
  -                << L":" << entName
  -                << L" - " << text
  +                << ":" << StrX(entName)
  +                << " - " << StrX(text)
                   << endl;
           return;
       }