You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@locus.apache.org on 2000/05/05 21:18:15 UTC

cvs commit: xml-xalan/c/samples/SimpleTransform SimpleTransform.cpp

dleslie     00/05/05 12:18:14

  Modified:    c/samples/SimpleTransform SimpleTransform.cpp
  Log:
  Replaced DOMString with XalanDOMString.
  
  Revision  Changes    Path
  1.3       +2 -2      xml-xalan/c/samples/SimpleTransform/SimpleTransform.cpp
  
  Index: SimpleTransform.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/SimpleTransform/SimpleTransform.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SimpleTransform.cpp	2000/04/28 20:16:07	1.2
  +++ SimpleTransform.cpp	2000/05/05 19:18:14	1.3
  @@ -102,8 +102,8 @@
   
   			// Our input files...The assumption is that the executable will be run
   			// from same directory as the input files.
  -			const DOMString		theXMLFileName("foo.xml");
  -			const DOMString		theXSLFileName("foo.xsl");
  +			const XalanDOMString		theXMLFileName("foo.xml");
  +			const XalanDOMString		theXSLFileName("foo.xsl");
   
   			// Our input sources...
   			XSLTInputSource		theInputSource(c_wstr(theXMLFileName));