diff options
author | Not Zed <NotZed@Ximian.com> | 2001-04-05 10:31:47 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-04-05 10:31:47 +0800 |
commit | 2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84 (patch) | |
tree | b002c46f2b60908bb71995d94f5b9b1f3a2245ce /camel/providers | |
parent | 130017e15709e1f16cac8271214d0f7f41845a2f (diff) | |
download | gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar.gz gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar.bz2 gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar.lz gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar.xz gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.tar.zst gsoc2013-evolution-2ac5b884fe9cca11f9fed05b0f2cd5f50aba3d84.zip |
merge from evolution-0-10-branch to evolution-0-10-merge-0
2001-04-05 Not Zed <NotZed@Ximian.com>
* merge from evolution-0-10-branch to evolution-0-10-merge-0
svn path=/trunk/; revision=9194
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-mbox-summary.c | 4 | ||||
-rw-r--r-- | camel/providers/pop3/camel-pop3-folder.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c index a37d1633ff..389b1f356c 100644 --- a/camel/providers/local/camel-mbox-summary.c +++ b/camel/providers/local/camel-mbox-summary.c @@ -35,6 +35,10 @@ #include <string.h> #include <stdlib.h> +#include "camel-mbox-summary.h" +#include "camel/camel-mime-message.h" +#include "camel/camel-operation.h" + #define io(x) #define d(x) /*(printf("%s(%d): ", __FILE__, __LINE__),(x))*/ diff --git a/camel/providers/pop3/camel-pop3-folder.c b/camel/providers/pop3/camel-pop3-folder.c index 3b1366ba27..96b5471828 100644 --- a/camel/providers/pop3/camel-pop3-folder.c +++ b/camel/providers/pop3/camel-pop3-folder.c @@ -286,7 +286,7 @@ pop3_get_message (CamelFolder *folder, const char *uid, CamelException *ex) return NULL; } - camel_operation_start(NULL, _("Retrieving POP message %d"), num); + camel_operation_start_transient(NULL, _("Retrieving POP message %d"), num); status = camel_pop3_command (CAMEL_POP3_STORE (folder->parent_store), &result, ex, "RETR %d", num); |