diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-10-07 11:38:52 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-13 01:58:59 +0800 |
commit | a06e4484b8df804124b5bcf88d94dec5acfba270 (patch) | |
tree | 4fa42793d7dc461f2b3767296d76592182c48222 /mail/Makefile.am | |
parent | 5e0758bb6934a7859b1d8a247c8fb21c156772cf (diff) | |
download | gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.gz gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.zst gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.zip |
Give MailSession a permanent home.
Global variables in shared libraries are a bad idea. EMailBackend now
owns the MailSession instance, which is actually now EMailSession.
Move the blocking utility functions in mail-tools.c to e-mail-session.c
and add asynchronous variants. Same approach as Camel.
Replace EMailReader.get_shell_backend() with EMailReader.get_backend(),
which returns an EMailBackend. Easier access to the EMailSession.
Diffstat (limited to 'mail/Makefile.am')
-rw-r--r-- | mail/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/Makefile.am b/mail/Makefile.am index 79db282629..f30de3eea9 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -54,6 +54,7 @@ mailinclude_HEADERS = \ e-mail-migrate.h \ e-mail-reader.h \ e-mail-reader-utils.h \ + e-mail-session.h \ e-mail-sidebar.h \ e-mail-store.h \ e-mail-tag-editor.h \ @@ -92,7 +93,6 @@ mailinclude_HEADERS = \ mail-mt.h \ mail-ops.h \ mail-send-recv.h \ - mail-session.h \ mail-tools.h \ mail-vfolder.h \ message-list.h @@ -123,6 +123,7 @@ libevolution_mail_la_SOURCES = \ e-mail-migrate.c \ e-mail-reader.c \ e-mail-reader-utils.c \ + e-mail-session.c \ e-mail-sidebar.c \ e-mail-store.c \ e-mail-tag-editor.c \ @@ -161,7 +162,6 @@ libevolution_mail_la_SOURCES = \ mail-mt.c \ mail-ops.c \ mail-send-recv.c \ - mail-session.c \ mail-tools.c \ mail-vfolder.c \ message-list.c |