]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/region.cpp
some != NULL checks
[wxWidgets.git] / src / gtk / region.cpp
index 8af2c03eee82a6c71b5e5076508cf1b988eefc8e..0332bd48b6b948c98ffb72cf36ca92ab602d277d 100644 (file)
@@ -293,7 +293,7 @@ bool wxRegion::Xor( const wxRect& rect )
 bool wxRegion::Xor( const wxRegion& region )
 {
     if (region.IsNull())
-        return NULL;
+        return FALSE;
 
     if (!m_refData)
     {
@@ -322,7 +322,7 @@ void wxRegion::GetBox( wxCoord &x, wxCoord &y, wxCoord &w, wxCoord &h ) const
     y = 0;
     w = -1;
     h = -1;
-    if (m_refData)
+    if (!m_refData)
         return;
 
     GdkRectangle rect;