From d344366c42dc5c3516c048311667aeb221890fe4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 10 Mar 2006 00:26:28 +0000 Subject: [PATCH] Add wx.ListBox.HitTest git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_listbox.i | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wxPython/src/_listbox.i b/wxPython/src/_listbox.i index 565dea0bd1..ef426b07a0 100644 --- a/wxPython/src/_listbox.i +++ b/wxPython/src/_listbox.i @@ -106,6 +106,8 @@ public: // return True if this listbox is sorted bool IsSorted() const; + // return the index of the item at this position or wxNOT_FOUND + int HitTest(const wxPoint& pt) const; %extend { void SetItemForegroundColour(int item, const wxColour& c) { @@ -170,9 +172,6 @@ public: int GetItemHeight(); #endif - // return the index of the item at this position or wxNOT_FOUND - int HitTest(const wxPoint& pt) const; - %Rename(HitTestXY, int, HitTest(wxCoord x, wxCoord y) const); }; //--------------------------------------------------------------------------- -- 2.47.2