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/08/08 17:51:36 UTC

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

dbertoni    01/08/08 08:51:36

  Modified:    c/src/PlatformSupport FormatterListener.cpp
  Log:
  Fixed order of members in initializer list.
  
  Revision  Changes    Path
  1.3       +3 -3      xml-xalan/c/src/PlatformSupport/FormatterListener.cpp
  
  Index: FormatterListener.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/FormatterListener.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FormatterListener.cpp	2001/06/29 20:54:48	1.2
  +++ FormatterListener.cpp	2001/08/08 15:51:36	1.3
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: FormatterListener.cpp,v 1.2 2001/06/29 20:54:48 dbertoni Exp $
  + * $Id: FormatterListener.cpp,v 1.3 2001/08/08 15:51:36 dbertoni Exp $
    * 
    * $State: Exp $
    * 
  @@ -75,8 +75,8 @@
   
   FormatterListener::FormatterListener(eFormat	theFormat) :
   	DocumentHandler(),
  -	m_outputFormat(theFormat),
  -	m_prefixResolver(0)
  +	m_prefixResolver(0),
  +	m_outputFormat(theFormat)
   {
   }
   
  
  
  

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