X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14f355c2b5c71fc7c3d680aea366582d2ac60f7b..d2ebf0b7303be387d2d5a55ea0cd672fdf0c4f25:/src/common/geometry.cpp diff --git a/src/common/geometry.cpp b/src/common/geometry.cpp index 51fe2842ee..b78f2e79ee 100644 --- a/src/common/geometry.cpp +++ b/src/common/geometry.cpp @@ -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 )