Add (currently unimplemented) missing wxRegion constructors for wxRegionGeneric.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -271,6 +271,21 @@ wxRegionGeneric::wxRegionGeneric(const wxPoint& topLeft, const wxPoint& bottomRi
|
||||
m_refData = new wxRegionRefData(topLeft, bottomRight);
|
||||
}
|
||||
|
||||
wxRegionGeneric::wxRegionGeneric(const wxBitmap& bmp)
|
||||
{
|
||||
wxFAIL_MSG("NOT IMPLEMENTED: wxRegionGeneric::wxRegionGeneric(const wxBitmap& bmp)");
|
||||
}
|
||||
|
||||
wxRegionGeneric::wxRegionGeneric(size_t n, const wxPoint *points, wxPolygonFillMode fillStyle)
|
||||
{
|
||||
wxFAIL_MSG("NOT IMPLEMENTED: wxRegionGeneric::wxRegionGeneric(size_t n, const wxPoint *points, wxPolygonFillMode fillStyle)");
|
||||
}
|
||||
|
||||
wxRegionGeneric::wxRegionGeneric(const wxBitmap& bmp, const wxColour& transp, int tolerance)
|
||||
{
|
||||
wxFAIL_MSG("NOT IMPLEMENTED: wxRegionGeneric::wxRegionGeneric(const wxBitmap& bmp, const wxColour& transp, int tolerance)");
|
||||
}
|
||||
|
||||
void wxRegionGeneric::Clear()
|
||||
{
|
||||
UnRef();
|
||||
|
||||
Reference in New Issue
Block a user