aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-01-14 12:02:52 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:25 +0800
commit9914970baa59028039a95f278e13ec03ce62efa2 (patch)
tree6f76ca3a24d7490716a06274ff2993f3f0caa168 /calendar/gui/e-meeting-time-sel.c
parent7a49a211783ec81b30a384fdec8c42b52cd2a794 (diff)
downloadgsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar.gz
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar.bz2
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar.lz
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar.xz
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.tar.zst
gsoc2013-evolution-9914970baa59028039a95f278e13ec03ce62efa2.zip
gdk_cursor_unref() -> g_object_unref()
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r--calendar/gui/e-meeting-time-sel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c
index 61ef52f47f..d68c369270 100644
--- a/calendar/gui/e-meeting-time-sel.c
+++ b/calendar/gui/e-meeting-time-sel.c
@@ -1467,7 +1467,7 @@ e_meeting_time_selector_refresh_cb (gpointer data)
window = gtk_widget_get_window (GTK_WIDGET (mts));
if (window)
gdk_window_set_cursor (window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
mts->last_cursor_set = GDK_LEFT_PTR;
@@ -1515,7 +1515,7 @@ e_meeting_time_selector_refresh_free_busy (EMeetingTimeSelector *mts, gint row,
cursor = gdk_cursor_new (GDK_WATCH);
window = gtk_widget_get_window (GTK_WIDGET (mts));
gdk_window_set_cursor (window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
mts->last_cursor_set = GDK_WATCH;
}