You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/09/20 20:06:05 UTC

cvs commit: xml-xalan/c/src/XalanExtensions FunctionDifference.cpp FunctionDistinct.cpp FunctionEvaluate.cpp FunctionHasSameNodes.cpp FunctionIntersection.cpp FunctionNodeSet.cpp

dbertoni    01/09/20 11:06:05

  Modified:    c/src/XalanExtensions FunctionDifference.cpp
                        FunctionDistinct.cpp FunctionEvaluate.cpp
                        FunctionHasSameNodes.cpp FunctionIntersection.cpp
                        FunctionNodeSet.cpp
  Log:
  Fixed compiler errors under msvc 7.0
  
  Revision  Changes    Path
  1.4       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionDifference.cpp
  
  Index: FunctionDifference.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionDifference.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FunctionDifference.cpp	2001/09/14 20:57:21	1.3
  +++ FunctionDifference.cpp	2001/09/20 18:06:05	1.4
  @@ -128,5 +128,5 @@
   const XalanDOMString
   FunctionDifference::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The difference() function accepts two arguments");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The difference() function accepts two arguments"));
   }
  
  
  
  1.6       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionDistinct.cpp
  
  Index: FunctionDistinct.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionDistinct.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FunctionDistinct.cpp	2001/09/14 20:57:21	1.5
  +++ FunctionDistinct.cpp	2001/09/20 18:06:05	1.6
  @@ -164,5 +164,5 @@
   const XalanDOMString
   FunctionDistinct::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The distinct() function accepts one argument");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The distinct() function accepts one argument"));
   }
  
  
  
  1.5       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionEvaluate.cpp
  
  Index: FunctionEvaluate.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionEvaluate.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- FunctionEvaluate.cpp	2001/09/14 20:57:21	1.4
  +++ FunctionEvaluate.cpp	2001/09/20 18:06:05	1.5
  @@ -133,5 +133,5 @@
   const XalanDOMString
   FunctionEvaluate::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The evaluate() function accepts one argument");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The evaluate() function accepts one argument"));
   }
  
  
  
  1.4       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionHasSameNodes.cpp
  
  Index: FunctionHasSameNodes.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionHasSameNodes.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FunctionHasSameNodes.cpp	2001/09/14 20:57:21	1.3
  +++ FunctionHasSameNodes.cpp	2001/09/20 18:06:05	1.4
  @@ -130,5 +130,5 @@
   const XalanDOMString
   FunctionHasSameNodes::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The has-same-nodes() function accepts two arguments");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The has-same-nodes() function accepts two arguments"));
   }
  
  
  
  1.4       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionIntersection.cpp
  
  Index: FunctionIntersection.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionIntersection.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FunctionIntersection.cpp	2001/09/14 20:57:21	1.3
  +++ FunctionIntersection.cpp	2001/09/20 18:06:05	1.4
  @@ -125,5 +125,5 @@
   const XalanDOMString
   FunctionIntersection::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The intersection() function accepts two arguments");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The intersection() function accepts two arguments"));
   }
  
  
  
  1.5       +1 -1      xml-xalan/c/src/XalanExtensions/FunctionNodeSet.cpp
  
  Index: FunctionNodeSet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanExtensions/FunctionNodeSet.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- FunctionNodeSet.cpp	2001/09/14 20:57:21	1.4
  +++ FunctionNodeSet.cpp	2001/09/20 18:06:05	1.5
  @@ -192,5 +192,5 @@
   const XalanDOMString
   FunctionNodeSet::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The node-set() function accepts one argument");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The node-set() function accepts one argument"));
   }
  
  
  

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