diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-23 03:12:55 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-23 03:12:55 +0800 |
commit | 0e841676107ec8f9f2728d4e711a4b730b19d331 (patch) | |
tree | 5f708596dd8b2aad005e99411a7bb6b9cf88f12a /camel/providers/imap/camel-imap-folder.c | |
parent | acc63c446a29a4096f14119c2b066aa687b6836c (diff) | |
download | gsoc2013-evolution-0e841676107ec8f9f2728d4e711a4b730b19d331.tar.gz gsoc2013-evolution-0e841676107ec8f9f2728d4e711a4b730b19d331.tar.zst gsoc2013-evolution-0e841676107ec8f9f2728d4e711a4b730b19d331.zip |
Clear CamelExceptions when appropriate (eg when folder is marked as
2000-07-22 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-store.c (get_folder): Clear CamelExceptions when
appropriate (eg when folder is marked as \NoSelect). Still needs some
cleanup and perhaps Dan will have a better way of doing this as this seems
like a messy way of handling this.
* providers/imap/camel-imap-folder.c (imap_get_uids): Took out some debug
statements as they are no longer needed.
svn path=/trunk/; revision=4275
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.c')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 42af577eb5..28cf4a848d 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -626,7 +626,6 @@ imap_get_uids (CamelFolder *folder, CamelException *ex) for (i = 0; i < count; i++) { info = (CamelMessageInfo *) g_ptr_array_index (infolist, i); array->pdata[i] = g_strdup (info->uid); - d(fprintf (stderr, "array->pdata[%d] = g_strdup (\"%s\");\n", i, (char *)array->pdata[i])); } return array; |