diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-28 04:24:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-28 04:24:44 +0800 |
commit | f5bed9bf7b143fff9bd258ea31fdac192e00a0d9 (patch) | |
tree | 46dca324c927780390cfbc8f4ddf200184462926 /widgets/misc/Makefile.am | |
parent | 8aa60af54eee1092e8963c0927c53e8f738eb4cd (diff) | |
download | gsoc2013-evolution-f5bed9bf7b143fff9bd258ea31fdac192e00a0d9.tar.gz gsoc2013-evolution-f5bed9bf7b143fff9bd258ea31fdac192e00a0d9.tar.zst gsoc2013-evolution-f5bed9bf7b143fff9bd258ea31fdac192e00a0d9.zip |
** Fixes bug #495123
2007-11-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #495123
* composer/Makefile.am:
Add a bunch of files for managing composer headers.
* composer/e-msg-composer.c (build_message), (from_changed_cb),
(set_editor_signature), (e_msg_composer_set_body),
(e_msg_composer_get_preferred_account):
* plugins/exchange-operations/exchange-mail-send-options.c
(append_to_header):
Use e_msg_composer_hdrs_get_from_account() to obtain the EAccount.
* composer/e-msg-composer-hdrs.c:
* composer/e-msg-composer-hdrs.h:
Massive refactoring to use new EComposerHeader classes.
* composer/e-composer-header.c:
* composer/e-composer-header.h:
* composer/e-composer-from-header.c:
* composer/e-composer-from-header.h:
* composer/e-composer-name-header.c:
* composer/e-composer-name-header.h:
* composer/e-composer-post-header.c:
* composer/e-composer-post-header.h:
* composer/e-composer-text-header.c:
* composer/e-composer-text-header.h:
New GObject classes manage different types of composer headers.
See bug #495123 for a more detailed description of each class.
* mail/mail-session.c (mail_session_init):
Pass the CamelSession to the EAccountComboBox class (ugly hack).
* widgets/misc/Makefile.am:
Add e-account-combo-box.[ch].
* widgets/misc/e-account-combo-box.c:
* widgets/misc/e-account-combo-box.h:
New widget renders an EAccountList as a combo box. Also listens
for changes to the EAccountList and updates itself accordingly.
svn path=/trunk/; revision=34600
Diffstat (limited to 'widgets/misc/Makefile.am')
-rw-r--r-- | widgets/misc/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/misc/Makefile.am b/widgets/misc/Makefile.am index fb8997f4a5..c35d7a9f2c 100644 --- a/widgets/misc/Makefile.am +++ b/widgets/misc/Makefile.am @@ -34,6 +34,7 @@ glade_DATA = e-send-options.glade \ widgetsinclude_HEADERS = \ $(pilot_headers) \ + e-account-combo-box.h \ e-activity-handler.h \ e-attachment.h \ e-attachment-bar.h \ @@ -81,6 +82,7 @@ widgetsinclude_HEADERS = \ libemiscwidgets_la_SOURCES = \ $(widgetsinclude_HEADERS) \ $(pilot_sources) \ + e-account-combo-box.c \ e-activity-handler.c \ e-calendar.c \ e-attachment.c \ |