Make IsExposed virtual.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
a5b31f4e11
commit
bdb427d70e
@ -728,8 +728,8 @@ public:
|
||||
|
||||
// these functions verify whether the given point/rectangle belongs to
|
||||
// (or at least intersects with) the update region
|
||||
bool IsExposed( int x, int y ) const;
|
||||
bool IsExposed( int x, int y, int w, int h ) const;
|
||||
virtual bool IsExposed( int x, int y ) const;
|
||||
virtual bool IsExposed( int x, int y, int w, int h ) const;
|
||||
|
||||
bool IsExposed( const wxPoint& pt ) const
|
||||
{ return IsExposed(pt.x, pt.y); }
|
||||
|
Loading…
Reference in New Issue
Block a user