From bdb427d70effd95e935bec6b6575c17594db680c Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 11 Sep 2006 09:54:07 +0000 Subject: [PATCH] Make IsExposed virtual. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/window.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/window.h b/include/wx/window.h index 7a20dcb81a..00270cee4a 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -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); } -- 2.45.2