From: Vadim Zeitlin Date: Sat, 27 Feb 1999 14:36:05 +0000 (+0000) Subject: 1. typos corrected in ftp/protocol/url (Members is no longer a hyperlink X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/296ec7d3ac9047b1655b789506c02b2f5f13cabf 1. typos corrected in ftp/protocol/url (Members is no longer a hyperlink leading to nowhere) 2. wxTreeCtrl::GetBoundRect() documentation updated git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1813 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/latex/wx/ftp.tex b/docs/latex/wx/ftp.tex index 99c7f490a8..ea0e3796eb 100644 --- a/docs/latex/wx/ftp.tex +++ b/docs/latex/wx/ftp.tex @@ -16,7 +16,7 @@ % Members % ---------------------------------------------------------------------------- -\latexignore{\rtfignore{\membersection{Members}}} +\latexignore{\rtfignore{\wxheading{Members}}} \membersection{wxFTP::SendCommand} @@ -129,6 +129,7 @@ If \it{wildcard} is a NULL string, it will return all files in directory. The form of the list can change from one peer system to another. For example, for a UNIX peer system, it will look like this: + \begin{verbatim} -r--r--r-- 1 guilhem lavaux 12738 Jan 16 20:17 cmndata.cpp -r--r--r-- 1 guilhem lavaux 10866 Jan 24 16:41 config.cpp @@ -139,6 +140,7 @@ for a UNIX peer system, it will look like this: \end{verbatim} But on Windows system, it will look like this: + \begin{verbatim} winamp~1 exe 520196 02-25-1999 19:28 winamp204.exe 1 file(s) 520 196 bytes diff --git a/docs/latex/wx/protocol.tex b/docs/latex/wx/protocol.tex index b5c35cf358..0043092d7f 100644 --- a/docs/latex/wx/protocol.tex +++ b/docs/latex/wx/protocol.tex @@ -15,6 +15,7 @@ % ---------------------------------------------------------------------------- % Members % ---------------------------------------------------------------------------- + \latexignore{\rtfignore{\membersection{Members}}} \membersection{wxProtocol::Reconnect}\label{wxprotoreconnect} diff --git a/docs/latex/wx/treectrl.tex b/docs/latex/wx/treectrl.tex index 4390b721f6..1a5057f0d9 100644 --- a/docs/latex/wx/treectrl.tex +++ b/docs/latex/wx/treectrl.tex @@ -190,9 +190,15 @@ Expands the given item. \membersection{wxTreeCtrl::GetBoundingRect}\label{wxtreectrlgetitemrect} -\constfunc{void}{GetBoundingRect}{\param{const wxTreeItemId\&}{ item}, \param{wxRect\& }{rect}, \param{bool }{textOnly = FALSE}} +\constfunc{bool}{GetBoundingRect}{\param{const wxTreeItemId\&}{ item}, \param{wxRect\& }{rect}, \param{bool }{textOnly = FALSE}} -Returns the position and size of the rectangle bounding the item. +Retrieves the rectangle bounding the {\it item}. If {\it textOnly} is TRUE, +only the rectangle around the items label will be returned, otherwise the +items image is also taken into account. + +The return value is TRUE if the rectangle was successfully retrieved or FALSE +if it was not (in this case {\it rect} is not changed) - for example, if the +item is currently invisible. \membersection{wxTreeCtrl::GetChildrenCount}\label{wxtreectrlgetchildrencount} diff --git a/docs/latex/wx/url.tex b/docs/latex/wx/url.tex index 4d40753f83..5b9963ce1f 100644 --- a/docs/latex/wx/url.tex +++ b/docs/latex/wx/url.tex @@ -16,16 +16,17 @@ \begin{verbatim} wxURL url("http://a.host/a.dir/a.file"); - wxInputStream *in\_stream; + wxInputStream *in_stream; - in\_stream = url.GetInputStream(); - /* Then, you can use all IO calls of in\_stream (See wxStream) */ + in_stream = url.GetInputStream(); + // Then, you can use all IO calls of in_stream (See wxStream) \end{verbatim} % ---------------------------------------------------------------------------- % Members % ---------------------------------------------------------------------------- -\latexignore{\rtfignore{\membersection{Members}}} + +\latexignore{\rtfignore{\wxheading{Members}}} \membersection{wxURL::wxURL}\label{wxurlconstr}