dbertoni    00/04/21 13:29:02

  Modified:    c/src/XSLT NodeSorter.cpp
  Log:
  Compare strings according to collation sequence.
  
  Revision  Changes    Path
  1.6       +1 -1      xml-xalan/c/src/XSLT/NodeSorter.cpp
  
  Index: NodeSorter.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/NodeSorter.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- NodeSorter.cpp    2000/04/11 15:09:28     1.5
  +++ NodeSorter.cpp    2000/04/21 20:29:01     1.6
  @@ -196,7 +196,7 @@
        // Compare as strings
        else
        {
  -             const int       theCompareResult = compare(r1->str(), 
r2->str());
  +             const int       theCompareResult = collationCompare(r1->str(), 
r2->str());
   
                if(0 == theCompareResult)
                {
  
  
  

Reply via email to