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:05:14 UTC

cvs commit: xml-xalan/c/src/XSLT FunctionCurrent.cpp FunctionDocument.cpp FunctionElementAvailable.cpp FunctionFormatNumber.cpp FunctionFunctionAvailable.cpp FunctionGenerateID.cpp FunctionKey.cpp FunctionSystemProperty.cpp FunctionUnparsedEntityURI.cpp

dbertoni    01/09/20 11:05:14

  Modified:    c/src/XSLT FunctionCurrent.cpp FunctionDocument.cpp
                        FunctionElementAvailable.cpp
                        FunctionFormatNumber.cpp
                        FunctionFunctionAvailable.cpp
                        FunctionGenerateID.cpp FunctionKey.cpp
                        FunctionSystemProperty.cpp
                        FunctionUnparsedEntityURI.cpp
  Log:
  Fixed compiler errors under msvc 7.0
  
  Revision  Changes    Path
  1.12      +1 -1      xml-xalan/c/src/XSLT/FunctionCurrent.cpp
  
  Index: FunctionCurrent.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionCurrent.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- FunctionCurrent.cpp	2001/09/14 20:49:43	1.11
  +++ FunctionCurrent.cpp	2001/09/20 18:05:14	1.12
  @@ -110,5 +110,5 @@
   const XalanDOMString
   FunctionCurrent::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The current() function does not accept any arguments!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The current() function does not accept any arguments!"));
   }
  
  
  
  1.26      +1 -1      xml-xalan/c/src/XSLT/FunctionDocument.cpp
  
  Index: FunctionDocument.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionDocument.cpp,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- FunctionDocument.cpp	2001/09/14 20:49:43	1.25
  +++ FunctionDocument.cpp	2001/09/20 18:05:14	1.26
  @@ -343,5 +343,5 @@
   const XalanDOMString
   FunctionDocument::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The document() function accepts one or two arguments!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The document() function accepts one or two arguments!"));
   }
  
  
  
  1.14      +1 -1      xml-xalan/c/src/XSLT/FunctionElementAvailable.cpp
  
  Index: FunctionElementAvailable.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionElementAvailable.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- FunctionElementAvailable.cpp	2001/09/14 20:49:43	1.13
  +++ FunctionElementAvailable.cpp	2001/09/20 18:05:14	1.14
  @@ -134,5 +134,5 @@
   const XalanDOMString
   FunctionElementAvailable::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The function-available() function takes one argument!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The function-available() function takes one argument!"));
   }
  
  
  
  1.15      +1 -1      xml-xalan/c/src/XSLT/FunctionFormatNumber.cpp
  
  Index: FunctionFormatNumber.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionFormatNumber.cpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- FunctionFormatNumber.cpp	2001/09/14 20:49:43	1.14
  +++ FunctionFormatNumber.cpp	2001/09/20 18:05:14	1.15
  @@ -256,7 +256,7 @@
   const XalanDOMString
   FunctionFormatNumber::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The format-number() function takes two or three arguments!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The format-number() function takes two or three arguments!"));
   }
   
   
  
  
  
  1.13      +1 -1      xml-xalan/c/src/XSLT/FunctionFunctionAvailable.cpp
  
  Index: FunctionFunctionAvailable.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionFunctionAvailable.cpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- FunctionFunctionAvailable.cpp	2001/09/14 20:49:43	1.12
  +++ FunctionFunctionAvailable.cpp	2001/09/20 18:05:14	1.13
  @@ -129,5 +129,5 @@
   const XalanDOMString
   FunctionFunctionAvailable::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The function-available() function takes one argument!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The function-available() function takes one argument!"));
   }
  
  
  
  1.18      +1 -1      xml-xalan/c/src/XSLT/FunctionGenerateID.cpp
  
  Index: FunctionGenerateID.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionGenerateID.cpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- FunctionGenerateID.cpp	2001/09/14 20:49:43	1.17
  +++ FunctionGenerateID.cpp	2001/09/20 18:05:14	1.18
  @@ -194,5 +194,5 @@
   const XalanDOMString
   FunctionGenerateID::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The generate-id function takes zero or one arguments!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The generate-id function takes zero or one arguments!"));
   }
  
  
  
  1.21      +1 -1      xml-xalan/c/src/XSLT/FunctionKey.cpp
  
  Index: FunctionKey.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionKey.cpp,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- FunctionKey.cpp	2001/09/14 20:49:43	1.20
  +++ FunctionKey.cpp	2001/09/20 18:05:14	1.21
  @@ -229,5 +229,5 @@
   const XalanDOMString
   FunctionKey::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The key() function takes two arguments!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The key() function takes two arguments!"));
   }
  
  
  
  1.19      +1 -1      xml-xalan/c/src/XSLT/FunctionSystemProperty.cpp
  
  Index: FunctionSystemProperty.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionSystemProperty.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- FunctionSystemProperty.cpp	2001/09/14 20:49:43	1.18
  +++ FunctionSystemProperty.cpp	2001/09/20 18:05:14	1.19
  @@ -179,5 +179,5 @@
   const XalanDOMString
   FunctionSystemProperty::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The system-property() function accepts one argument!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The system-property() function accepts one argument!"));
   }
  
  
  
  1.16      +1 -1      xml-xalan/c/src/XSLT/FunctionUnparsedEntityURI.cpp
  
  Index: FunctionUnparsedEntityURI.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/FunctionUnparsedEntityURI.cpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- FunctionUnparsedEntityURI.cpp	2001/09/14 20:49:43	1.15
  +++ FunctionUnparsedEntityURI.cpp	2001/09/20 18:05:14	1.16
  @@ -121,5 +121,5 @@
   const XalanDOMString
   FunctionUnparsedEntityURI::getError() const
   {
  -	return XALAN_STATIC_UCODE_STRING("The unparsed-entity-uri function accepts one argument!");
  +	return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The unparsed-entity-uri 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