X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=camel%2Fcamel-subscribable.c;h=b73395e51212c6553c9431e42f93c13bda8a1c0f;hb=464f2c00018a417b3bf8956c431a7ab3e8ed1e0f;hp=ceb18d01a463b70237d1774ae61389ad697abdcf;hpb=d6a9dc69c0024e196f5d610e6cf7bcd9df6a5c82;p=platform%2Fupstream%2Fevolution-data-server.git diff --git a/camel/camel-subscribable.c b/camel/camel-subscribable.c index ceb18d0..b73395e 100644 --- a/camel/camel-subscribable.c +++ b/camel/camel-subscribable.c @@ -611,7 +611,7 @@ camel_subscribable_unsubscribe_folder_finish (CamelSubscribable *subscribable, * @folder_info: information about the subscribed folder * * Emits the #CamelSubscribable::folder-subscribed signal from an idle source - * on the main loop. The idle source's priority is #G_PRIORITY_DEFAULT_IDLE. + * on the main loop. The idle source's priority is #G_PRIORITY_DEFAULT. * * This function is only intended for Camel providers. * @@ -636,7 +636,7 @@ camel_subscribable_folder_subscribed (CamelSubscribable *subscribable, signal_data->folder_info = camel_folder_info_clone (folder_info); camel_session_idle_add ( - session, G_PRIORITY_DEFAULT_IDLE, + session, G_PRIORITY_DEFAULT, subscribable_emit_folder_subscribed_cb, signal_data, (GDestroyNotify) signal_data_free); } @@ -647,7 +647,7 @@ camel_subscribable_folder_subscribed (CamelSubscribable *subscribable, * @folder_info: information about the unsubscribed folder * * Emits the #CamelSubscribable::folder-unsubscribed signal from an idle source - * on the main loop. The idle source's priority is #G_PRIORITY_DEFAULT_IDLE. + * on the main loop. The idle source's priority is #G_PRIORITY_DEFAULT. * * This function is only intended for Camel providers. * @@ -672,7 +672,7 @@ camel_subscribable_folder_unsubscribed (CamelSubscribable *subscribable, signal_data->folder_info = camel_folder_info_clone (folder_info); camel_session_idle_add ( - session, G_PRIORITY_DEFAULT_IDLE, + session, G_PRIORITY_DEFAULT, subscribable_emit_folder_unsubscribed_cb, signal_data, (GDestroyNotify) signal_data_free); }