diff options
author | 0 <NotZed@Ximian.com> | 2001-10-30 11:28:40 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-30 11:28:40 +0800 |
commit | 093a00cf2bba85c4f1f0826dde1cb500ecc415d6 (patch) | |
tree | afd4239a5665fbdd3f3e9dd048a818295084f44e /mail/mail-local.c | |
parent | e01b1cb6625883a4db723209c743dc03abc112ef (diff) | |
download | gsoc2013-evolution-093a00cf2bba85c4f1f0826dde1cb500ecc415d6.tar.gz gsoc2013-evolution-093a00cf2bba85c4f1f0826dde1cb500ecc415d6.tar.zst gsoc2013-evolution-093a00cf2bba85c4f1f0826dde1cb500ecc415d6.zip |
Argh!!! Dont free the async op data here, the async op is still running
2001-10-30 <NotZed@Ximian.com>
* subscribe-dialog.c (fe_cancel_op_foreach): Argh!!! Dont free the
async op data here, the async op is still running and will access
it! Just try to cancel it and mark it as cancelled (id == -1)
(fe_done_subscribing): Only remove outselves from the hash table
if we're not cancelled. The handle should always be set here,
since this code runs in the gui thread.
* message-list.c (on_cursor_activated_idle): If nothing
selected/cursor not activated, then select no message.
* mail-folder-cache.c (update_1folder): Make the trash count
optional on EVOLUTION_COUNT_TRASH, becuase some lusers are just
too stupid to understand what its for.
* component-factory.c (storage_xfer_folder): Return slightly
better error codes for copying folders, since its not implemented
yet.
* mail-vfolder.c, mail-local.c, mail-folder-cache.c,
message-list.c component-factory.c, mail-ops.c,
subscribe-dialog.c, mail-session.c: d() out some debug printfs,
w() out some warnings.
* folder-browser-ui.c (folder_browser_ui_add_message): Fix typo,
Resent->Resend.
svn path=/trunk/; revision=14412
Diffstat (limited to 'mail/mail-local.c')
-rw-r--r-- | mail/mail-local.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-local.c b/mail/mail-local.c index 77dec887b5..74a7c3fbe9 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -490,7 +490,7 @@ mlf_set_folder(MailLocalFolder *mlf, guint32 flags, CamelException *ex) /* mlf->real_folder = camel_store_get_folder(mlf->real_store, mlf->meta->name, flags, ex); */ mbox = g_strdup_printf("%s/%s", mlf->real_path, mlf->meta->name); - printf("Opening mbox on real path: %s\n", mbox); + d(printf("Opening mbox on real path: %s\n", mbox)); mlf->real_folder = camel_store_get_folder(mlf->real_store, mbox, flags, ex); g_free(mbox); if (mlf->real_folder == NULL) @@ -984,7 +984,7 @@ static void mail_local_store_add_folder(MailLocalStore *mls, const char *uri, co CamelFolderInfo *info = NULL; CamelURL *url; - (printf("Shell adding folder: '%s' path = '%s'\n", uri, path)); + d(printf("Shell adding folder: '%s' path = '%s'\n", uri, path)); url = camel_url_new(uri, NULL); if (url == NULL) { @@ -1041,7 +1041,7 @@ static void mail_local_store_remove_folder(MailLocalStore *mls, const char *path { struct _search_info data = { path, NULL }; - printf("shell removing folder? '%s'\n", path); + d(printf("shell removing folder? '%s'\n", path)); /* we're keyed on uri, not path, so have to search for it manually */ |