From 70be2567de053a3284a28e0dc8f0c1d91d9a8fb8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 1 Jan 2000 11:50:11 +0000 Subject: [PATCH] replaced occurences of \_ by _ in verbatim environment git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/ftp.tex | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/latex/wx/ftp.tex b/docs/latex/wx/ftp.tex index b8c25d08b9..e5e591b1e0 100644 --- a/docs/latex/wx/ftp.tex +++ b/docs/latex/wx/ftp.tex @@ -192,21 +192,21 @@ can send new commands without reconnecting. \begin{verbatim} wxFTP ftp; - wxInputStream *in\_stream; + wxInputStream *in_stream; char *data; ftp.Connect("a.host.domain"); - ftp.ChDir("a\_directory"); - in\_stream = ftp.GetInputStream("a\_file\_to\_get"); + ftp.ChDir("a_directory"); + in_stream = ftp.GetInputStream("a_file_to_get"); - data = new char[in\_stream->StreamSize()]; + data = new char[in_stream->StreamSize()]; - in\_stream->Read(data, in\_stream->StreamSize()); - if (in\_stream->LastError() != wxStream\_NOERROR) { + in_stream->Read(data, in_stream->StreamSize()); + if (in_stream->LastError() != wxStream_NOERROR) { // Do something. } - delete in\_stream; /* Close the DATA connection */ + delete in_stream; /* Close the DATA connection */ ftp.Close(); /* Close the COMMAND connection */ \end{verbatim} -- 2.45.2