git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15186
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
dc->GetSize(&width, &height);
//it would be nice to fail if we don't get a sensible size...
dc->GetSize(&width, &height);
//it would be nice to fail if we don't get a sensible size...
- wxCHECK_RET(width >= 1 && height >= 1, wxT("In FloodFill, dc.GetSize routine failed, method not supported by this DC"));
+ wxASSERT_MSG(width >= 1 && height >= 1, wxT("In FloodFill, dc.GetSize routine failed, method not supported by this DC"));
if (width <= 1 || height <= 1)
return FALSE;
if (width <= 1 || height <= 1)
return FALSE;