remove duplicated HitTest implementation from wxCheckListBox, it already inherits wxListBox::HitTest() (which was however lacking an overload taking 2 coordinates, added now)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -171,6 +171,7 @@ public:
|
||||
*/
|
||||
virtual int GetSelections(wxArrayInt& selections) const;
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the item located at @a point, or @c wxNOT_FOUND if there
|
||||
is no item located at @a point.
|
||||
@@ -186,6 +187,8 @@ public:
|
||||
@since 2.7.0
|
||||
*/
|
||||
int HitTest(const wxPoint& point) const;
|
||||
int HitTest(int x, int y) const;
|
||||
//@}
|
||||
|
||||
/**
|
||||
Insert the given number of strings before the specified position.
|
||||
|
Reference in New Issue
Block a user