corrected assert even better
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15187 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e944f70a6d
commit
3f4f90c2a0
@ -284,10 +284,8 @@ bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
|
|||||||
dc->GetSize(&width, &height);
|
dc->GetSize(&width, &height);
|
||||||
|
|
||||||
//it would be nice to fail if we don't get a sensible size...
|
//it would be nice to fail if we don't get a sensible size...
|
||||||
wxASSERT_MSG(width >= 1 && height >= 1, wxT("In FloodFill, dc.GetSize routine failed, method not supported by this DC"));
|
wxCHECK_MSG(width >= 1 && height >= 1, FALSE,
|
||||||
|
wxT("In FloodFill, dc.GetSize routine failed, method not supported by this DC"));
|
||||||
if (width <= 1 || height <= 1)
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
//this is much faster than doing the individual pixels
|
//this is much faster than doing the individual pixels
|
||||||
wxMemoryDC memdc;
|
wxMemoryDC memdc;
|
||||||
@ -303,7 +301,7 @@ bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
|
|||||||
memdc.SelectObject(bitmap);
|
memdc.SelectObject(bitmap);
|
||||||
dc->Blit(0, 0, width, height, &memdc, 0, 0);
|
dc->Blit(0, 0, width, height, &memdc, 0, 0);
|
||||||
memdc.SelectObject(wxNullBitmap);
|
memdc.SelectObject(wxNullBitmap);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user