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:
@@ -728,8 +728,8 @@ public:
|
|||||||
|
|
||||||
// these functions verify whether the given point/rectangle belongs to
|
// these functions verify whether the given point/rectangle belongs to
|
||||||
// (or at least intersects with) the update region
|
// (or at least intersects with) the update region
|
||||||
bool IsExposed( int x, int y ) const;
|
virtual 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, int w, int h ) const;
|
||||||
|
|
||||||
bool IsExposed( const wxPoint& pt ) const
|
bool IsExposed( const wxPoint& pt ) const
|
||||||
{ return IsExposed(pt.x, pt.y); }
|
{ return IsExposed(pt.x, pt.y); }
|
||||||
|
Reference in New Issue
Block a user