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 07:08:56 UTC

cvs commit: xml-xalan/c/Tests/Dom2Dom dom2dom.cpp

dbertoni    2002/11/04 22:08:56

  Modified:    c/Tests/Dom2Dom dom2dom.cpp
  Log:
  Use accessor member functions instead of direct access to data members.
  
  Revision  Changes    Path
  1.7       +3 -3      xml-xalan/c/Tests/Dom2Dom/dom2dom.cpp
  
  Index: dom2dom.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/Tests/Dom2Dom/dom2dom.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- dom2dom.cpp	30 Aug 2002 23:58:29 -0000	1.6
  +++ dom2dom.cpp	5 Nov 2002 06:08:56 -0000	1.7
  @@ -214,12 +214,12 @@
   
   		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;
  +			standalone = stylesheet->getOutputStandalone();
   		}
   
   		FormatterToXML* const	fToXML =
  
  
  

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