summaryrefslogtreecommitdiff
path: root/gtk/gtkaboutdialog.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-12-20 03:14:38 +0100
committerMatthias Clasen <mclasen@redhat.com>2010-12-21 12:07:05 -0500
commit8f1f7439033e85ebf480c1c62e8e4647cba80b97 (patch)
treec5550e16f4a45329ce6d3523ef29fcdfc32f27ea /gtk/gtkaboutdialog.c
parenta9637f05b672666c6331cf4ca5d6f64734647b78 (diff)
downloadgtk+-8f1f7439033e85ebf480c1c62e8e4647cba80b97.tar.gz
gtk: Use g_object_unref instead of gdk_cursor_unref
Diffstat (limited to 'gtk/gtkaboutdialog.c')
-rw-r--r--gtk/gtkaboutdialog.c4
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);
}