]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/region.cpp
Better fix
[wxWidgets.git] / src / gtk1 / region.cpp
index b8f140cb72ffd8c9db625032d01dc28e61dea6ff..ea44a6498fbecb726f296b25f8ac5a6631fb5bf9 100644 (file)
@@ -187,7 +187,9 @@ bool wxRegion::DoUnionWithRect(const wxRect& r)
         rect.width = r.width;
         rect.height = r.height;
 
-        gdk_region_union_with_rect( M_REGIONDATA->m_region, &rect );
+        GdkRegion *reg = gdk_region_union_with_rect( M_REGIONDATA->m_region, &rect );
+        gdk_region_destroy( M_REGIONDATA->m_region );
+        M_REGIONDATA->m_region = reg;
     }
 
     return TRUE;