aboutsummaryrefslogtreecommitdiffstats
path: root/mail
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 /mail
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 'mail')
-rw-r--r--mail/em-subscription-editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-subscription-editor.c b/mail/em-subscription-editor.c
index 1ccab1aaca..f84486a4dc 100644
--- a/mail/em-subscription-editor.c
+++ b/mail/em-subscription-editor.c
@@ -408,7 +408,7 @@ subscription_editor_subscribe (EMSubscriptionEditor *editor)
cursor = gdk_cursor_new (GDK_WATCH);
window = gtk_widget_get_window (GTK_WIDGET (editor));
gdk_window_set_cursor (window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
gtk_tree_model_get (
tree_model, &iter, COL_FOLDER_INFO, &folder_info, -1);
@@ -466,7 +466,7 @@ subscription_editor_unsubscribe (EMSubscriptionEditor *editor)
cursor = gdk_cursor_new (GDK_WATCH);
window = gtk_widget_get_window (GTK_WIDGET (editor));
gdk_window_set_cursor (window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
gtk_tree_model_get (
tree_model, &iter, COL_FOLDER_INFO, &folder_info, -1);
@@ -520,7 +520,7 @@ subscription_editor_refresh (EMSubscriptionEditor *editor)
cursor = gdk_cursor_new (GDK_WATCH);
window = gtk_widget_get_window (GTK_WIDGET (editor));
gdk_window_set_cursor (window, cursor);
- gdk_cursor_unref (cursor);
+ g_object_unref (cursor);
camel_store_get_folder_info (
editor->priv->active->store, NULL,