]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/geometry.cpp
Make radiobutton tab behaviour the same on MSW
[wxWidgets.git] / src / common / geometry.cpp
index 83948c28d7c7bf0431aa460edf451aa1cf8b1afa..b78f2e79ee6dc2777b8f7619252e974f1b031cdb 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     08/05/99
 // RCS-ID:
 // Copyright:   (c) 1999 Stefan Csomor
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
@@ -57,9 +57,9 @@ bool wxRect2DDouble::Intersects( const wxRect2DDouble &rect ) const
 
     if ( left < right && top < bottom )
     {
-        return TRUE;
+        return true;
     }
-    return FALSE;
+    return false;
 }
 
 void wxRect2DDouble::Intersect( const wxRect2DDouble &src1 , const wxRect2DDouble &src2 , wxRect2DDouble *dest )
@@ -252,9 +252,9 @@ bool wxRect2DInt::Intersects( const wxRect2DInt &rect ) const
 
     if ( left < right && top < bottom )
     {
-        return TRUE;
+        return true;
     }
-    return FALSE;
+    return false;
 }
 
 void wxRect2DInt::Intersect( const wxRect2DInt &src1 , const wxRect2DInt &src2 , wxRect2DInt *dest )