diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-20 12:33:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-20 12:33:23 +0800 |
commit | 5a1c48696363e3f3c7ffe11bdffdcad6557f811a (patch) | |
tree | 816b61003397929415eeaa75a5cc81aec1a6ab91 /calendar/gui | |
parent | 22d41a51fae2d18315887b05000cf7facc36e887 (diff) | |
download | gsoc2013-evolution-5a1c48696363e3f3c7ffe11bdffdcad6557f811a.tar.gz gsoc2013-evolution-5a1c48696363e3f3c7ffe11bdffdcad6557f811a.tar.zst gsoc2013-evolution-5a1c48696363e3f3c7ffe11bdffdcad6557f811a.zip |
Untangle some circular dependencies with the composer.
Addressbook and calendar no longer depend on the mailer.
svn path=/branches/kill-bonobo/; revision=37107
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/Makefile.am | 4 | ||||
-rw-r--r-- | calendar/gui/itip-utils.c | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 16f59136d1..a244f759e0 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -1,7 +1,3 @@ -if OS_WIN32 -WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-mail.la -endif - SUBDIRS = alarm-notify dialogs ecalendarincludedir = $(privincludedir)/calendar/gui diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 3de75cf3d3..e879a9b440 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -37,7 +37,6 @@ #include <time.h> #include <composer/e-msg-composer.h> -#include <mail/em-composer-utils.h> #include <camel/camel-mime-filter-tohtml.h> static gchar *itip_methods[] = { @@ -1221,7 +1220,6 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, composer = e_msg_composer_new (); table = e_msg_composer_get_header_table (composer); - em_composer_utils_setup_default_callbacks (composer); e_composer_header_table_set_subject (table, subject); e_composer_header_table_set_account_name (table, from); @@ -1329,7 +1327,6 @@ reply_to_calendar_comp (ECalComponentItipMethod method, composer = e_msg_composer_new (); table = e_msg_composer_get_header_table (composer); - em_composer_utils_setup_default_callbacks (composer); e_composer_header_table_set_subject (table, subject); e_composer_header_table_set_account_name (table, from); |