From e944f70a6d8f0a56d00d575940f4fe94f49ef727 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 17 Apr 2002 14:09:11 +0000 Subject: [PATCH] Corrected assertion git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15186 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/imagfill.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/imagfill.cpp b/src/common/imagfill.cpp index a3d595ccff..e20ce667fc 100644 --- a/src/common/imagfill.cpp +++ b/src/common/imagfill.cpp @@ -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;