diff options
Diffstat (limited to 'plugins/groupwise-features')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/groupwise-features/mail-send-options.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index f10faa6efb..ad257042d5 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,8 @@ +2008-04-02 Matthew Barnes <mbarnes@redhat.com> + + * mail-send-options.c (org_gnome_composer_send_options): + Adapt to streamlined EMsgComposer API. + 2008-03-27 Milan Crha <mcrha@redhat.com> ** Fix for bug #511957 diff --git a/plugins/groupwise-features/mail-send-options.c b/plugins/groupwise-features/mail-send-options.c index 6fefa06e4b..84ca2ef00e 100644 --- a/plugins/groupwise-features/mail-send-options.c +++ b/plugins/groupwise-features/mail-send-options.c @@ -142,10 +142,12 @@ org_gnome_composer_send_options (EPlugin *ep, EMEventTargetComposer *t) { EMsgComposer *comp = (struct _EMsgComposer *)t->composer ; + EComposerHeaderTable *table; EAccount *account = NULL; char *temp = NULL; - account = e_msg_composer_get_preferred_account (comp) ; + table = e_msg_composer_get_header_table (comp); + account = e_composer_header_table_get_account (table); if (!account) return; |