diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-09-18 21:04:34 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-09-18 21:04:34 +0800 |
commit | 9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d (patch) | |
tree | 3ac91137c889d248eccc4376fe76156c2554301f /calendar/gui/calendar-commands.c | |
parent | 0f85cd722a41a2008f95ebc49aa5478530cc1c43 (diff) | |
download | gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar.gz gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar.bz2 gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar.lz gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar.xz gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.tar.zst gsoc2013-evolution-9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d.zip |
** Fixes bug #352450
2006-09-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #352450
* gui/calendar-commands.c:
* gui/e-day-view-main-item.c:
* gui/e-day-view-top-item.c:
* gui/e-meeting-list-view.c:
* gui/e-meeting-time-sel-item.c:
* gui/e-meeting-time-sel.c:
* gui/e-week-view-event-item.c:
Replace deprecated GLib and GDK function calls.
svn path=/trunk/; revision=32781
Diffstat (limited to 'calendar/gui/calendar-commands.c')
-rw-r--r-- | calendar/gui/calendar-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index be5aef1bfb..40abe4efaf 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -154,7 +154,7 @@ set_clock_cursor (GnomeCalendar *gcal) cursor = gdk_cursor_new (GDK_WATCH); gdk_window_set_cursor (GTK_WIDGET (gcal)->window, cursor); - gdk_cursor_destroy (cursor); + gdk_cursor_unref (cursor); gdk_flush (); } |