diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-01-18 00:07:19 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-01-19 12:48:47 +0800 |
commit | 61ae36351b24cc676f60483d576706bf827f2987 (patch) | |
tree | c55d9e000efd47fa14865fad2defa79b5ed61ffd /composer | |
parent | 37644b9d257369c5c158121ca4807cafbe844595 (diff) | |
download | gsoc2013-evolution-61ae36351b24cc676f60483d576706bf827f2987.tar.gz gsoc2013-evolution-61ae36351b24cc676f60483d576706bf827f2987.tar.zst gsoc2013-evolution-61ae36351b24cc676f60483d576706bf827f2987.zip |
Introduce libemail-engine and libemail-utils.
These libraries are bound for E-D-S so they live at the lowest layer of
Evolution for now -- even libeutil can link to them (but please don't).
This is the first step toward moving mail handing to a D-Bus service.
Diffstat (limited to 'composer')
-rw-r--r-- | composer/Makefile.am | 1 | ||||
-rw-r--r-- | composer/e-composer-header-table.h | 4 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 14 |
3 files changed, 10 insertions, 9 deletions
diff --git a/composer/Makefile.am b/composer/Makefile.am index 013d04c8bd..cee00a002b 100644 --- a/composer/Makefile.am +++ b/composer/Makefile.am @@ -63,6 +63,7 @@ libcomposer_la_LIBADD = \ $(top_builddir)/em-format/libemformat.la \ $(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la \ $(top_builddir)/addressbook/gui/contact-list-editor/libecontactlisteditor.la \ + $(top_builddir)/libemail-utils/libemail-utils.la \ $(EVOLUTION_DATA_SERVER_LIBS) \ $(GNOME_PLATFORM_LIBS) \ $(GTKHTML_LIBS) diff --git a/composer/e-composer-header-table.h b/composer/e-composer-header-table.h index f7edec0b14..9d6a83fb9a 100644 --- a/composer/e-composer-header-table.h +++ b/composer/e-composer-header-table.h @@ -23,9 +23,9 @@ #include <libebook/e-destination.h> #include <shell/e-shell.h> -#include <e-util/e-signature.h> -#include <e-util/e-signature-list.h> #include <composer/e-composer-header.h> +#include <libemail-utils/e-signature.h> +#include <libemail-utils/e-signature-list.h> /* Standard GObject macros */ #define E_TYPE_COMPOSER_HEADER_TABLE \ diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index a7250a7d7d..6a48950912 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -37,13 +37,13 @@ #include <ctype.h> #include <fcntl.h> -#include "e-util/e-account-utils.h" -#include "e-util/e-alert-dialog.h" -#include "e-util/e-dialog-utils.h" -#include "e-util/e-signature-utils.h" -#include "e-util/e-util-private.h" -#include "em-format/em-format.h" -#include "em-format/em-format-quote.h" +#include <e-util/e-alert-dialog.h> +#include <e-util/e-dialog-utils.h> +#include <e-util/e-util-private.h> +#include <em-format/em-format.h> +#include <em-format/em-format-quote.h> +#include <libemail-utils/e-account-utils.h> +#include <libemail-utils/e-signature-utils.h> #include "e-composer-private.h" |