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:
@@ -3794,6 +3794,14 @@ public:
|
|||||||
return wxTE_HT_ON_TEXT;
|
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
|
#ifndef SWIG
|
||||||
protected:
|
protected:
|
||||||
virtual bool DoLoadFile(const wxString& file, int fileType);
|
virtual bool DoLoadFile(const wxString& file, int fileType);
|
||||||
|
@@ -430,6 +430,14 @@ public:
|
|||||||
return wxTE_HT_ON_TEXT;
|
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
|
#ifndef SWIG
|
||||||
protected:
|
protected:
|
||||||
virtual bool DoLoadFile(const wxString& file, int fileType);
|
virtual bool DoLoadFile(const wxString& file, int fileType);
|
||||||
|
Reference in New Issue
Block a user