diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-08 10:14:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-08 10:14:23 +0800 |
commit | 35139b298329ba21d3b645aa0891863bc7caaf68 (patch) | |
tree | 7ab9fed11b5efc991f6288c860a9bf908b0c963c /mail/mail-format.c | |
parent | a223b88a9034f0c33f2e979403e1352ff822f8a2 (diff) | |
download | gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.gz gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.zst gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.zip |
Updated to reflect changes to the mail-config API.
2001-01-07 Jeffrey Stedfast <fejj@helixcode.com>
* mail-tools.c (mail_tool_quote_message): Updated to reflect
changes to the mail-config API.
* mail-display.c (redisplay): Updated to reflect changes to the
mail-config API.
* mail-callbacks.c (providers_config): Use the new account dialog.
* mail-config-druid.c (druid_finish): Load the new storage into
the shell.
(mail_config_druid_new): Take a shell argument.
* mail-format.c (mail_generate_reply): Updated to reflect changes
to the mail-config API.
* mail-config-druid.c: Fixed this to build.
* mail-callbacks.c (check_send_configuration): Updated to reflect
changes to the mail-config API.
(create_msg_composer): Same.
(forward_get_composer): Same.
(send_queued_mail): Same.
(composer_send_cb): Same.
* mail-account-editor.c: Updated to build cleanly. *
mail-config-druid.c: Same. * mail-accounts.c: Same.
* folder-browser-factory.c (control_activate): Updated for API
changes in mail-config.
* folder-browser.c (done_message_selected): Updated for API
changed in mail-config.
(folder_browser_gui_init): Same.
(got_folder): Same.
* component-factory.c (owner_set_cb): After using the sources
list, free it as it is no longer a const GSList as with the older
mail-config code.
* mail-config.c: Totally rewritten.
svn path=/trunk/; revision=7298
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index c4f9ef2b7c..aaefd4856f 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1654,7 +1654,7 @@ mail_generate_reply (CamelMimeMessage *message, gboolean to_all) const char *message_id, *references; const char *name = NULL, *address = NULL; GList *to = NULL, *cc = NULL; - MailConfigIdentity *id; + const MailConfigIdentity *id; gchar *sig_file = NULL; const CamelInternetAddress *reply_to, *sender; time_t date; @@ -1662,9 +1662,9 @@ mail_generate_reply (CamelMimeMessage *message, gboolean to_all) id = mail_config_get_default_identity (); if (id) - sig_file = id->sig; + sig_file = id->signature; - composer = e_msg_composer_new_with_sig_file (sig_file, mail_config_send_html ()); + composer = e_msg_composer_new_with_sig_file (sig_file, mail_config_get_send_html ()); if (!composer) return NULL; |