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 2002/11/05 06:15:07 UTC

cvs commit: xml-xalan/c/Tests/Harness FileUtility.cpp

dbertoni    2002/11/04 21:15:07

  Modified:    c/Tests/Harness FileUtility.cpp
  Log:
  Use accessor member functions instead of direct access to data members.
  
  Revision  Changes    Path
  1.43      +4 -4      xml-xalan/c/Tests/Harness/FileUtility.cpp
  
  Index: FileUtility.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/Tests/Harness/FileUtility.cpp,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- FileUtility.cpp	7 Sep 2002 00:00:57 -0000	1.42
  +++ FileUtility.cpp	5 Nov 2002 05:15:06 -0000	1.43
  @@ -633,13 +633,13 @@
   
   	if (stylesheet != 0)
   	{
  -		version = stylesheet->m_version;
  +		version = stylesheet->getOutputVersion();
   
  -		mediatype = stylesheet->m_mediatype;
  +		mediatype = stylesheet->getOutputMediaType();
   		doctypeSystem = stylesheet->getOutputDoctypeSystem();
   		doctypePublic = stylesheet->getOutputDoctypePublic();
  -		standalone = stylesheet->m_standalone;
  -		outputIndent = stylesheet->m_indentResult;
  +		standalone = stylesheet->getOutputStandalone();
  +		outputIndent = stylesheet->getOutputIndent();
   	}
   
   	return new FormatterToXML(
  
  
  

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