X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/701871dc87386acb7178edab44d68a307bc0f132..4a699e3a59b19c21b6faae714b56cac5a75df2e2:/src/gtk/region.cpp diff --git a/src/gtk/region.cpp b/src/gtk/region.cpp index 92ec47f1e7..1e1cb84e8f 100644 --- a/src/gtk/region.cpp +++ b/src/gtk/region.cpp @@ -137,7 +137,7 @@ wxGDIRefData *wxRegion::CloneGDIRefData(const wxGDIRefData *data) const bool wxRegion::DoIsEqual(const wxRegion& region) const { return gdk_region_equal(M_REGIONDATA->m_region, - M_REGIONDATA_OF(region)->m_region); + M_REGIONDATA_OF(region)->m_region) != 0; } // ---------------------------------------------------------------------------- @@ -292,7 +292,7 @@ bool wxRegion::IsEmpty() const if (!m_refData) return true; - return gdk_region_empty( M_REGIONDATA->m_region ); + return gdk_region_empty( M_REGIONDATA->m_region ) != 0; } wxRegionContain wxRegion::DoContainsPoint( wxCoord x, wxCoord y ) const