Added hint at default conversion in Unicode mode. It is

enough if I got burned by it.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19429 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2003-03-02 21:31:58 +00:00
parent 437a9c0ad3
commit 194e741cea

View File

@@ -39,8 +39,11 @@ For example:
\func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}}
\func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}, \param{wxMBConv\&}{ conv = wxMBConvUTF8}}
Constructs a text stream object from an input stream. Only read methods will
be available.
be available. The second form is available only in Unicode mode and lets
you set the encoding of the text.
\wxheading{Parameters}
@@ -139,11 +142,10 @@ 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 = wxMBConvUTF8}}
Constructs a text stream object from an output stream. Only write methods will
be available.
be available. The second form is only available in Unicode mode.
\wxheading{Parameters}
\docparam{stream}{The output stream.}