diff options
author | Benjamin Otte <otte@redhat.com> | 2010-12-20 03:14:38 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-12-21 12:07:05 -0500 |
commit | 8f1f7439033e85ebf480c1c62e8e4647cba80b97 (patch) | |
tree | c5550e16f4a45329ce6d3523ef29fcdfc32f27ea /gtk/gtkaboutdialog.c | |
parent | a9637f05b672666c6331cf4ca5d6f64734647b78 (diff) | |
download | gtk+-8f1f7439033e85ebf480c1c62e8e4647cba80b97.tar.gz |
gtk: Use g_object_unref instead of gdk_cursor_unref
Diffstat (limited to 'gtk/gtkaboutdialog.c')
-rw-r--r-- | gtk/gtkaboutdialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c index 3d2d73fc82..2e042bdd2f 100644 --- a/gtk/gtkaboutdialog.c +++ b/gtk/gtkaboutdialog.c @@ -796,8 +796,8 @@ gtk_about_dialog_finalize (GObject *object) g_slist_foreach (priv->visited_links, (GFunc)g_free, NULL); g_slist_free (priv->visited_links); - gdk_cursor_unref (priv->hand_cursor); - gdk_cursor_unref (priv->regular_cursor); + g_object_unref (priv->hand_cursor); + g_object_unref (priv->regular_cursor); G_OBJECT_CLASS (gtk_about_dialog_parent_class)->finalize (object); } |