diff options
Diffstat (limited to 'plugins/groupwise-features/mail-send-options.c')
-rw-r--r-- | plugins/groupwise-features/mail-send-options.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; |