]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagfill.cpp
Corrected assertion
[wxWidgets.git] / src / common / imagfill.cpp
index a3d595ccff68354bbee43c28a2c3853cc296574e..e20ce667fc7b57b3f30f2caf0977df89e1ff365f 100644 (file)
@@ -284,7 +284,7 @@ bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
     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;