unhide the second wxTextAreaBase::HitTest() overload to suppress a warning about it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-25 12:45:59 +00:00
parent 6ecc02f354
commit 0aa619b532
2 changed files with 16 additions and 0 deletions

View File

@@ -3794,6 +3794,14 @@ public:
return wxTE_HT_ON_TEXT;
}
// just unhide it
virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
wxTextCoord *col,
wxTextCoord *row) const
{
return wxTextAreaBase::HitTest(pt, col, row);
}
#ifndef SWIG
protected:
virtual bool DoLoadFile(const wxString& file, int fileType);