diff options
author | Not Zed <NotZed@Ximian.com> | 2001-02-08 09:45:37 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-02-08 09:45:37 +0800 |
commit | 4459154549f367cb1fa8a89b06e89d8f99abb4e3 (patch) | |
tree | c6d10940b9fbe3210b216c94305d8f160906d2f3 /mail/mail-mt.h | |
parent | 49f8a687a41e635cd83807d33c74afe8e55fb3df (diff) | |
download | gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar.gz gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar.bz2 gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar.lz gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar.xz gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.tar.zst gsoc2013-evolution-4459154549f367cb1fa8a89b06e89d8f99abb4e3.zip |
Handle internal camel status return. (receive_done): Remove active
2001-02-07 Not Zed <NotZed@Ximian.com>
* mail-send-recv.c (operation_status): Handle internal camel status return.
(receive_done): Remove active download when done.
(mail_receive_uri): Initiate download of a single source, with no gui.
(build_dialogue): Mark any new items as real active downloads.
(do_show_status): Make the progress bar optional.
2001-02-06 Not Zed <NotZed@Ximian.com>
* mail-send-recv.c: camel_cancel->camel_operation.
* mail-ops.old.c: camel_cancel->camel_operation.
* mail-ops.c: camel_cancel->camel_operation.
* mail-mt.c: camel_cancel->camel_operation.
* mail-callbacks.c (stop_threads): camel_cancel->camel_operation.
* mail-mt.h: CamelCancel->CamelOperation.
svn path=/trunk/; revision=8096
Diffstat (limited to 'mail/mail-mt.h')
-rw-r--r-- | mail/mail-mt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-mt.h b/mail/mail-mt.h index 8642a3ebaa..935b4b15b8 100644 --- a/mail/mail-mt.h +++ b/mail/mail-mt.h @@ -27,13 +27,13 @@ #include "camel/camel-exception.h" #include "e-util/e-msgport.h" #include "camel/camel-object.h" -#include "camel/camel-session.h" +#include "camel/camel-operation.h" typedef struct _mail_msg { EMsg msg; /* parent type */ struct _mail_msg_op *ops; /* operation functions */ unsigned int seq; /* seq number for synchronisation */ - CamelCancel *cancel; /* a cancellation handle */ + CamelOperation *cancel; /* a cancellation/status handle */ CamelException ex; /* an initialised camel exception, upto the caller to use this */ } mail_msg_t; |