From: SourceForge.net <no...@so...> - 2005-07-12 17:20:44
|
Patches item #1236859, was opened at 2005-07-12 10:20 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1236859&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Carl Godkin (cgodkin) Assigned to: Nobody/Anonymous (nobody) Summary: doc problem with wxTreeListCtrl::FindItem Initial Comment: The docs for wxTreeListCtrl::FindItem() lists these flags: wxTL_SEARCH_LEVEL wxTL_SEARCH_VISIBLE wxTL_SEARCH_FULL wxTL_SEARCH_PARTIAL wxTL_SEARCH_NOCASE but the code actually uses these: // modes for navigation const int wxTL_MODE_NAV_FULLTREE = 0x0000; // default const int wxTL_MODE_NAV_EXPANDED = 0x0001; const int wxTL_MODE_NAV_VISIBLE = 0x0002; const int wxTL_MODE_NAV_LEVEL = 0x0004; // modes for FindItem const int wxTL_MODE_FIND_EXACT = 0x0000; // default const int wxTL_MODE_FIND_PARTIAL = 0x0010; const int wxTL_MODE_FIND_NOCASE = 0x0020; It would be good to correct the documentation. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1236859&group_id=51305 |