Changeset 3636
- Timestamp:
- 04/29/08 14:34:30
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-send-queue.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3635 r3636 1 2008-04-29 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Extra robustness in TnyCamelSendQueue 4 1 5 2008-04-29 Jose Dapena Paz <jdapena@igalia.com> 2 6 trunk/libtinymail-camel/tny-camel-send-queue.c
r3628 r3636 794 794 g_object_unref (info->self); 795 795 796 797 if (TNY_IS_CAMEL_FOLDER (info->sentbox)) { 798 TnyCamelFolderPriv *spriv = TNY_CAMEL_FOLDER_GET_PRIVATE (info->sentbox); 799 _tny_camel_folder_unreason (spriv); 800 } 801 802 if (TNY_IS_CAMEL_FOLDER (info->outbox)) { 803 TnyCamelFolderPriv *opriv = TNY_CAMEL_FOLDER_GET_PRIVATE (info->outbox); 804 _tny_camel_folder_unreason (opriv); 805 } 806 807 g_object_unref (info->outbox); 808 g_object_unref (info->sentbox); 809 796 810 if (info->outbox_account) 797 811 g_object_unref (info->outbox_account); 798 812 if (info->sentbox_account) 799 813 g_object_unref (info->sentbox_account); 800 801 g_object_unref (info->outbox);802 g_object_unref (info->sentbox);803 814 g_object_unref (info->trans_account); 804 815 … … 853 864 info->trans_account = (TnyTransportAccount *) g_object_ref (priv->trans_account); 854 865 866 if (TNY_IS_CAMEL_FOLDER (info->sentbox)) { 867 TnyCamelFolderPriv *spriv = TNY_CAMEL_FOLDER_GET_PRIVATE (info->sentbox); 868 _tny_camel_folder_reason (spriv); 869 } 870 871 if (TNY_IS_CAMEL_FOLDER (info->outbox)) { 872 TnyCamelFolderPriv *opriv = TNY_CAMEL_FOLDER_GET_PRIVATE (info->outbox); 873 _tny_camel_folder_reason (opriv); 874 } 855 875 856 876 emit_queue_control_signals (self, TNY_SEND_QUEUE_START);
