Fix for unhiding the other version of the base class HitTest

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-07-23 20:26:25 +00:00
parent c04ec49657
commit 4aae4a085c
2 changed files with 12 additions and 0 deletions

View File

@@ -90,6 +90,12 @@ public:
#ifdef __WXGTK20__
virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
wxTextCoord *col,
wxTextCoord *row) const
{
return wxTextCtrlBase::HitTest(pt, col, row);
}
#endif // __WXGTK20__
// Clipboard operations