aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-12-22 22:03:40 +0800
committerXan Lopez <xan@gnome.org>2010-12-22 22:04:52 +0800
commit1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95 (patch)
tree2207e6d558aa0c63ba7ec0e42a1079dd176630a3 /lib/widgets
parent93364a9c0b0952efe8715ddaeaf139a07fbd37c4 (diff)
downloadgsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.gz
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.bz2
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.lz
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.xz
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.zst
gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.zip
ephy-node-view: don't use gdk_cursor_unref
It's deprecated since GdkCursor is a GObject now. The stuff in egg/ still needs fixing, but we'll just sync from upstream.
Diffstat (limited to 'lib/widgets')
-rw-r--r--lib/widgets/ephy-node-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c
index 5fc62afdb..2f5429143 100644
--- a/lib/widgets/ephy-node-view.c
+++ b/lib/widgets/ephy-node-view.c
@@ -506,7 +506,7 @@ filter_changed_cb (EphyNodeFilter *filter,
cursor = gdk_cursor_new (GDK_WATCH);
gdk_window_set_cursor (gdk_window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
gdk_flush ();