gdkwindow: Don't bother with a return parameter for queue_antiexpose

Standard refcounting works perfectly well. Don't give us the opportunity
for more memory leaks.
This commit is contained in:
Jasper St. Pierre
2014-06-21 18:03:56 -04:00
parent dcef61ac44
commit c767d504c5
9 changed files with 15 additions and 26 deletions

View File

@ -3238,9 +3238,9 @@ gdk_win32_window_get_shape (GdkWindow *window)
return NULL;
}
static gboolean
static void
_gdk_win32_window_queue_antiexpose (GdkWindow *window,
cairo_region_t *area)
cairo_region_t *area)
{
HRGN hrgn = cairo_region_to_hrgn (area, 0, 0);
@ -3251,8 +3251,6 @@ _gdk_win32_window_queue_antiexpose (GdkWindow *window,
ValidateRgn (GDK_WINDOW_HWND (window), hrgn);
DeleteObject (hrgn);
return FALSE;
}
static void