diff options
author | Xan Lopez <xan@gnome.org> | 2010-12-22 22:03:40 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-12-22 22:04:52 +0800 |
commit | 1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95 (patch) | |
tree | 2207e6d558aa0c63ba7ec0e42a1079dd176630a3 /lib | |
parent | 93364a9c0b0952efe8715ddaeaf139a07fbd37c4 (diff) | |
download | gsoc2013-epiphany-1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95.tar.gz 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')
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 |
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 (); |