X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c7fc996a73e9f6a83067bc28a3c5581a3fee65..f9e5b1c786b132485fb0570755d693ff354f4418:/include/wx/os2/brush.h?ds=sidebyside diff --git a/include/wx/os2/brush.h b/include/wx/os2/brush.h index a072e4b82e..c7657279d5 100644 --- a/include/wx/os2/brush.h +++ b/include/wx/os2/brush.h @@ -61,7 +61,8 @@ public: inline wxBitmap* GetStipple(void) const { return (M_BRUSHDATA ? & M_BRUSHDATA->m_vStipple : 0); }; inline int GetPS(void) const { return (M_BRUSHDATA ? M_BRUSHDATA->m_hBrush : 0); }; - inline virtual bool Ok(void) const { return (m_refData != NULL) ; } + inline virtual bool Ok() const { return IsOk(); } + inline virtual bool IsOk(void) const { return (m_refData != NULL) ; } // // Implementation @@ -71,7 +72,7 @@ public: // Useful helper: create the brush resource // bool RealizeResource(void); - WXHANDLE GetResourceHandle(void) ; + virtual WXHANDLE GetResourceHandle(void) const; bool FreeResource(bool bForce = false); bool IsFree(void) const; void Unshare(void);