]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/geometry.cpp
modified wxEncodingConverter API to report failures
[wxWidgets.git] / src / common / geometry.cpp
index 51fe2842eeeea6c62744a5424b5fde20328f406e..b78f2e79ee6dc2777b8f7619252e974f1b031cdb 100644 (file)
@@ -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 )