aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel-item.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2006-09-18 21:04:34 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-09-18 21:04:34 +0800
commit9f6f57d5fc1edf96cee6caa67d13d4ac3d55e53d (patch)
tree3ac91137c889d248eccc4376fe76156c2554301f /calendar/gui/e-meeting-time-sel-item.c
parent0f85cd722a41a2008f95ebc49aa5478530cc1c43 (diff)
downloadgsoc2013-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/e-meeting-time-sel-item.c')
-rw-r--r--calendar/gui/e-meeting-time-sel-item.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-meeting-time-sel-item.c b/calendar/gui/e-meeting-time-sel-item.c
index ced272cb8f..4969f70c7f 100644
--- a/calendar/gui/e-meeting-time-sel-item.c
+++ b/calendar/gui/e-meeting-time-sel-item.c
@@ -159,15 +159,15 @@ e_meeting_time_selector_item_destroy (GtkObject *object)
mts_item = E_MEETING_TIME_SELECTOR_ITEM (object);
if (mts_item->normal_cursor) {
- gdk_cursor_destroy (mts_item->normal_cursor);
+ gdk_cursor_unref (mts_item->normal_cursor);
mts_item->normal_cursor = NULL;
}
if (mts_item->resize_cursor) {
- gdk_cursor_destroy (mts_item->resize_cursor);
+ gdk_cursor_unref (mts_item->resize_cursor);
mts_item->resize_cursor = NULL;
}
if (mts_item->busy_cursor) {
- gdk_cursor_destroy (mts_item->busy_cursor);
+ gdk_cursor_unref (mts_item->busy_cursor);
mts_item->busy_cursor = NULL;
}