mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 11:20:12 +00:00
gdk: s/gdk_cursor_unref/g_object_unref/
This commit is contained in:
parent
133a7a4f58
commit
616afadd78
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user