]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing conv parameter to wxTextOutputStream ctor
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 13 Sep 2004 09:22:11 +0000 (09:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 13 Sep 2004 09:22:11 +0000 (09:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29117 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/txtstrm.tex

index 50d70b79e40f7c0c9a21e48ab8ded3f5fafa4e9f..47d5f21f35acfd33c2b23d5b536f6e7835af5553 100644 (file)
@@ -46,8 +46,7 @@ For example:
 \func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}, \param{const wxString\&}{ sep=" $\backslash$t"}, 
   \param{wxMBConv\&}{ conv = wxConvUTF8} }
 
-Constructs a text stream object from an input stream. Only read methods will
-be available.
+Constructs a text stream associated to the given input stream.
 
 \wxheading{Parameters}
 
@@ -198,10 +197,9 @@ and Unix in their native formats (concerning the line ending).
 
 \membersection{wxTextOutputStream::wxTextOutputStream}\label{wxtextoutputstreamconstr}
 
-\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}, \param{wxEOL}{ mode = wxEOL\_NATIVE}}
+\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}, \param{wxEOL}{ mode = wxEOL\_NATIVE}, \param{wxMBConv\&}{ conv = wxConvUTF8}}
 
-Constructs a text stream object from an output stream. Only write methods will
-be available.
+Constructs a text stream object associated to the given output stream.
 
 \wxheading{Parameters}
 
@@ -209,6 +207,9 @@ be available.
 
 \docparam{mode}{The end-of-line mode. One of {\bf wxEOL\_NATIVE}, {\bf wxEOL\_DOS}, {\bf wxEOL\_MAC} and {\bf wxEOL\_UNIX}.}
 
+\docparam{conv}{{\it In Unicode build only:} The object used to convert
+Unicode text into ASCII characters written to the output stream.}
+
 \membersection{wxTextOutputStream::\destruct{wxTextOutputStream}}
 
 \func{}{\destruct{wxTextOutputStream}}{\void}