]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed [ 875952 ] Win32 wxListControl::FindItem documentation wrong
authorJulian Smart <julian@anthemion.co.uk>
Sun, 8 Feb 2004 15:13:44 +0000 (15:13 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 8 Feb 2004 15:13:44 +0000 (15:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25638 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/listctrl.tex

index a8398da8a2564feaeab37276b830bfa9477439d8..90f2a72824e83892c0df0f5802e1305845ee1099 100644 (file)
@@ -242,18 +242,18 @@ Ensures this item is visible.
 
 \func{long}{FindItem}{\param{long }{start}, \param{const wxString\& }{str}, \param{const bool }{partial = false}}
 
-Find an item whose label matches this string, starting from the item after {\it start} or
+Find an item whose label matches this string, starting from {\it start} or
 the beginning if {\it start} is -1.
 
 \func{long}{FindItem}{\param{long }{start}, \param{long }{data}}
 
-Find an item whose data matches this data, starting from the item after {\it start} or
+Find an item whose data matches this data, starting from {\it start} or
 the beginning if 'start' is -1.
 
 \func{long}{FindItem}{\param{long }{start}, \param{const wxPoint\& }{pt}, \param{int }{direction}}
 
-Find an item nearest this position in the specified direction, starting from
-the item after {\it start} or the beginning if {\it start} is -1.
+Find an item nearest this position in the specified direction, starting from 
+{\it start} or the beginning if {\it start} is -1.
 
 \pythonnote{In place of a single overloaded method name, wxPython
 implements the following methods:\par