diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-09 11:31:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-09 11:31:31 +0800 |
commit | a2d998fe1391733fa472f2c142891d31fd81f958 (patch) | |
tree | c554cd3852b61c3166b749097c0be976974526d8 /mail/mail-format.c | |
parent | 20b3bc147ce1de0fe2708236c7915df96d275634 (diff) | |
download | gsoc2013-evolution-a2d998fe1391733fa472f2c142891d31fd81f958.tar.gz gsoc2013-evolution-a2d998fe1391733fa472f2c142891d31fd81f958.tar.zst gsoc2013-evolution-a2d998fe1391733fa472f2c142891d31fd81f958.zip |
Brand spankin' new config druid, editor, and manager.
2001-01-08 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am:
* component-factory.c:
* folder-browser-factory.c:
* folder-browser.c:
* mail-accounts.[c,h]:
* mail-account-editor.[c,h]:
* mail-callbacks.c:
* mail-config.[c,h]:
* mail-config-druid.[c,h]:
* mail-config-druid.glade:
* mail-display.c:
* mail-format.c:
* mail-tools.c: Brand spankin' new config druid, editor,
and manager.
svn path=/trunk/; revision=7313
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; |