From 5e54ce21100e02e0543d891e3bf8dc1782fa0db2 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 4 May 2014 21:56:02 +0200 Subject: Fix gdk_cursor_unref deprecation --- libmate-desktop/mate-aboutdialog.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libmate-desktop/mate-aboutdialog.c') diff --git a/libmate-desktop/mate-aboutdialog.c b/libmate-desktop/mate-aboutdialog.c index f2a8a24..b786b6b 100644 --- a/libmate-desktop/mate-aboutdialog.c +++ b/libmate-desktop/mate-aboutdialog.c @@ -603,8 +603,13 @@ mate_about_dialog_finalize (GObject *object) g_slist_foreach (priv->visited_links, (GFunc)g_free, NULL); g_slist_free (priv->visited_links); +#if GTK_CHECK_VERSION (3, 0, 0) + g_object_unref (priv->hand_cursor); + g_object_unref (priv->regular_cursor); +#else gdk_cursor_unref (priv->hand_cursor); gdk_cursor_unref (priv->regular_cursor); +#endif G_OBJECT_CLASS (mate_about_dialog_parent_class)->finalize (object); } -- cgit v1.2.1