]> git.saurik.com Git - wxWidgets.git/commitdiff
1. typos corrected in ftp/protocol/url (Members is no longer a hyperlink
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 27 Feb 1999 14:36:05 +0000 (14:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 27 Feb 1999 14:36:05 +0000 (14:36 +0000)
   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

docs/latex/wx/ftp.tex
docs/latex/wx/protocol.tex
docs/latex/wx/treectrl.tex
docs/latex/wx/url.tex

index 99c7f490a883839682019838c57447d9d3b8cc22..ea0e3796eb4996b6a546c4a92e00cfaa50027e61 100644 (file)
@@ -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
index b5c35cf358b460872febf37b9b560099c7393ce5..0043092d7f3d1cfc3e066d1dc1bd11c567d0df35 100644 (file)
@@ -15,6 +15,7 @@
 % ----------------------------------------------------------------------------
 % Members
 % ----------------------------------------------------------------------------
+
 \latexignore{\rtfignore{\membersection{Members}}}
 
 \membersection{wxProtocol::Reconnect}\label{wxprotoreconnect}
index 4390b721f698d06c37dab56fc0d1ab0ec73f8288..1a5057f0d92b90d6fe9c24037dfb14fb4c480bc9 100644 (file)
@@ -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}
 
index 4d40753f8353370918889b8f1cfdc980898c5cfa..5b9963ce1f08a2e9e459813c110a687c54425433 100644 (file)
 
 \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}