gdk: s/gdk_cursor_unref/g_object_unref/

This commit is contained in:
Michael Natterer 2011-10-15 14:35:28 +02:00
parent 133a7a4f58
commit 616afadd78
4 changed files with 5 additions and 5 deletions

View File

@ -257,7 +257,7 @@ gdk_window_impl_broadway_init (GdkWindowImplBroadway *impl)
{
impl->toplevel_window_type = -1;
impl->device_cursor = g_hash_table_new_full (NULL, NULL, NULL,
(GDestroyNotify) gdk_cursor_unref);
(GDestroyNotify) g_object_unref);
}
static void
@ -286,7 +286,7 @@ gdk_window_impl_broadway_finalize (GObject *object)
g_hash_table_remove (broadway_display->id_ht, GINT_TO_POINTER(impl->id));
if (impl->cursor)
gdk_cursor_unref (impl->cursor);
g_object_unref (impl->cursor);
g_hash_table_destroy (impl->device_cursor);

View File

@ -360,7 +360,7 @@ gdk_window_impl_wayland_finalize (GObject *object)
impl = GDK_WINDOW_IMPL_WAYLAND (object);
if (impl->cursor)
gdk_cursor_unref (impl->cursor);
g_object_unref (impl->cursor);
if (impl->server_surface)
cairo_surface_destroy (impl->server_surface);

View File

@ -152,7 +152,7 @@ _gdk_x11_cursor_display_finalize (GdkDisplay *display)
if (gdk_cursor_get_display (GDK_CURSOR (cursor)) == display)
{
GSList* olditem;
gdk_cursor_unref ((GdkCursor*) cursor);
g_object_unref ((GdkCursor*) cursor);
/* Remove this item from the list */
*(itemp) = item->next;
olditem = item;

View File

@ -273,7 +273,7 @@ gdk_window_impl_x11_finalize (GObject *object)
g_free (impl->toplevel);
if (impl->cursor)
gdk_cursor_unref (impl->cursor);
g_object_unref (impl->cursor);
g_hash_table_destroy (impl->device_cursor);