X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1058f652031c9b99daa7c701f09f16c3af7159c1..70708ad282d9061c301e896900907e917dc14850:/interface/wx/listctrl.h diff --git a/interface/wx/listctrl.h b/interface/wx/listctrl.h index 222af7f596..860049943c 100644 --- a/interface/wx/listctrl.h +++ b/interface/wx/listctrl.h @@ -257,6 +257,8 @@ public: beginning if start is @c -1. The string comparison is case insensitive. If @a partial is @true then this method will look for items which begin with @a str. + + @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. */ long FindItem(long start, const wxString& str, bool partial = false); @@ -268,6 +270,8 @@ public: @beginWxPerlOnly In wxPerl this method is implemented as FindItemData(start, data). @endWxPerlOnly + + @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. */ long FindItem(long start, wxUIntPtr data); @@ -278,6 +282,8 @@ public: @beginWxPerlOnly In wxPerl this method is implemented as FindItemAtPos(start, pt, direction). @endWxPerlOnly + + @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. */ long FindItem(long start, const wxPoint& pt, int direction);