Doc corrections, wxMotif toolbar AddControl implementation (untested as yet)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6593 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-03-10 16:06:33 +00:00
parent 723d1b1da1
commit 66f55ec64c
12 changed files with 64 additions and 39 deletions

View File

@@ -66,15 +66,15 @@ notification.
\constfunc{wxInputStream* }{GetInputStream}{\void}
It returns a input stream correspoding to the output stream of the subprocess.
It returns a output stream corresponding to the input stream of the subprocess.
If it is NULL, you have not turned on the redirection.
See \helpref{wxProcess::Redirect}{wxprocessredirect}.
\membersection{wxProcess::GetInputStream}\label{wxprocessgetinputstream}
\membersection{wxProcess::GetOutputStream}\label{wxprocessgetoutputstream}
\constfunc{wxInputStream* }{GetInputStream}{\void}
\constfunc{wxOutputStream* }{GetOutputStream}{\void}
It returns a output stream corresponding to the input stream of the subprocess.
It returns an output stream correspoding to the output stream of the subprocess.
If it is NULL, you have not turned on the redirection.
See \helpref{wxProcess::Redirect}{wxprocessredirect}.
@@ -97,3 +97,4 @@ It turns on the redirection, wxExecute will try to open a couple of pipes
to catch the subprocess stdio. The caught input stream is returned by
GetOutputStream() as a non-seekable stream. The caught output stream is returned
by GetInputStream() as a non-seekable stream.