From f901411dccce410ac004703eea550dbb1bb8518d Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Tue, 31 Dec 2013 00:34:50 +0100 Subject: [PATCH] OVCCGtk: don't use deprecated gdk_pixbuf_unref() --- clients/ovcc-gtk/src/tiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/ovcc-gtk/src/tiles.c b/clients/ovcc-gtk/src/tiles.c index e3b8569..a0a494e 100644 --- a/clients/ovcc-gtk/src/tiles.c +++ b/clients/ovcc-gtk/src/tiles.c @@ -32,7 +32,7 @@ static GHashTable *ST_loaded_tiles = NULL; G_STMT_START { \ if G_UNLIKELY (ST_loaded_tiles == NULL) { \ ST_loaded_tiles = g_hash_table_new_full (NULL, NULL, \ - NULL, (GDestroyNotify)gdk_pixbuf_unref); \ + NULL, (GDestroyNotify)g_object_unref); \ } \ } G_STMT_END #define LOOKUP(id) \ -- GitLab