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 2004/11/05 21:03:42 UTC

cvs commit: xml-xalan/c/src/xalanc/PlatformSupport XalanMessageLoader.cpp

dbertoni    2004/11/05 12:03:42

  Modified:    c/src/xalanc/PlatformSupport XalanMessageLoader.cpp
  Log:
  Fixed bug with misplaced ')'.
  
  Revision  Changes    Path
  1.5       +7 -8      xml-xalan/c/src/xalanc/PlatformSupport/XalanMessageLoader.cpp
  
  Index: XalanMessageLoader.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/PlatformSupport/XalanMessageLoader.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XalanMessageLoader.cpp	26 Feb 2004 22:34:18 -0000	1.4
  +++ XalanMessageLoader.cpp	5 Nov 2004 20:03:41 -0000	1.5
  @@ -139,14 +139,13 @@
   
   	XalanDOMChar	sBuffer[MAX_MESSAGE_LEN];
   
  -	s_msgLoader->load
  -		(
  -		msgToLoad
  -		, sBuffer
  -		, MAX_MESSAGE_LEN
  -		, repText1.c_str()
  -		, repText2.c_str())
  -		, repText3.c_str();
  +	s_msgLoader->load(
  +		msgToLoad,
  +		sBuffer,
  +		MAX_MESSAGE_LEN,
  +		repText1.c_str(),
  +		repText2.c_str(),
  +		repText3.c_str());
   
   
   	return XalanDOMString(sBuffer);
  
  
  

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