diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-09-18 21:05:27 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-09-18 21:05:27 +0800 |
commit | 6a807f9488adba7c10573e6eaa28030e9c9cb222 (patch) | |
tree | d2172b7bc65a6ebb06fc8284f48a218f60e5b1f1 /e-util/e-cursor.c | |
parent | 9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d (diff) | |
download | gsoc2013-evolution-6a807f9488adba7c10573e6eaa28030e9c9cb222.tar.gz gsoc2013-evolution-6a807f9488adba7c10573e6eaa28030e9c9cb222.tar.zst gsoc2013-evolution-6a807f9488adba7c10573e6eaa28030e9c9cb222.zip |
** Fixes bug #352450
2006-09-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #352450
* e-cursor.c:
Replace deprecated GDK function call.
svn path=/trunk/; revision=32782
Diffstat (limited to 'e-util/e-cursor.c')
-rw-r--r-- | e-util/e-cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-cursor.c b/e-util/e-cursor.c index fa5f775a43..c16ccff952 100644 --- a/e-util/e-cursor.c +++ b/e-util/e-cursor.c @@ -61,7 +61,7 @@ void e_cursor_set (GtkWidget *widget, ECursorType cursor) } gdk_window_set_cursor (toplevel->window, window_cursor); - gdk_cursor_destroy (window_cursor); + gdk_cursor_unref (window_cursor); } } |