]> git.saurik.com Git - wxWidgets.git/commitdiff
FALSE not false
authorDavid Webster <Dave.Webster@bhmi.com>
Fri, 5 Apr 2002 19:55:43 +0000 (19:55 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Fri, 5 Apr 2002 19:55:43 +0000 (19:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/imagfill.cpp

index 42933301dbe56cb3735bd7b5ea73952d2abbacb4..d337301e7bb1b38fbadc7e2aa6e6d1b655cbb345 100644 (file)
@@ -1,9 +1,9 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        imagfill.cpp
 // Purpose:     FloodFill for wxImage
-// Author:      
+// Author:
 // RCS-ID:      $Id$
-// Copyright:   
+// Copyright:
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -32,7 +32,7 @@
 
 bool wxImage::MatchPixel(int x, int y, int w, int h, const wxColour & c)
 {
-    if ((x<0)||(x>=w)||(y<0)||(y>=h)) return false;
+    if ((x<0)||(x>=w)||(y<0)||(y>=h)) return FALSE;
 
     unsigned char r = GetRed(x,y);
     unsigned char g = GetGreen(x,y);