diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-08 10:19:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-08 10:19:48 +0800 |
commit | 29b221b3155780e0bb40a4d2e592ea0678c080d3 (patch) | |
tree | 722c755011153b070cb391363405d4cc4ed24cdd | |
parent | 35139b298329ba21d3b645aa0891863bc7caaf68 (diff) | |
download | gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar.gz gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar.bz2 gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar.lz gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar.xz gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.tar.zst gsoc2013-evolution-29b221b3155780e0bb40a4d2e592ea0678c080d3.zip |
Updated to reflect changes to the mail-config API.
2001-01-07 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer-hdrs.c (create_dropdown_entry): Updated to
reflect changes to the mail-config API.
svn path=/trunk/; revision=7299
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer-hdrs.c | 24 |
2 files changed, 18 insertions, 11 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 01deac7002..2b3736d1ab 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2001-01-07 Jeffrey Stedfast <fejj@helixcode.com> + + * e-msg-composer-hdrs.c (create_dropdown_entry): Updated to + reflect changes to the mail-config API. + 2001-01-05 Radek Doulik <rodo@helixcode.com> * listener.c (impl_event): disable indenting for now, it crashes diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c index edd8ff6803..35727e7da3 100644 --- a/composer/e-msg-composer-hdrs.c +++ b/composer/e-msg-composer-hdrs.c @@ -135,22 +135,24 @@ create_dropdown_entry (EMsgComposerHdrs *hdrs, gtk_combo_set_use_arrows (GTK_COMBO (combo), TRUE); gtk_combo_set_case_sensitive (GTK_COMBO (combo), FALSE); if (!strcmp (name, _("From:"))) { - GSList *ids, *stmp; + const MailConfigIdentity *id; + const GSList *accounts, *stmp; GList *tmp; - MailConfigIdentity *id; char *val; - ids = mail_config_get_identities (); - stmp = ids; + accounts = mail_config_get_accounts (); + stmp = accounts; while (stmp) { + const MailConfigAccount *account; char *address, *addr_local; - id = stmp->data; - g_assert (id); - g_assert (id->name); - g_assert (id->address); + account = stmp->data; + g_assert (account); + g_assert (account->id); + g_assert (account->id->name); + g_assert (account->id->address); - address = camel_internet_address_format_address(id->name, id->address); + address = camel_internet_address_format_address (account->id->name, account->id->address); addr_local = e_utf8_to_gtk_string (combo, address); g_free (address); values = g_list_append (values, addr_local); @@ -165,13 +167,13 @@ create_dropdown_entry (EMsgComposerHdrs *hdrs, tmp = tmp->next; } g_list_free (values); - + id = mail_config_get_default_identity (); g_assert (id); g_assert (id->name); g_assert (id->address); - val = camel_internet_address_format_address(id->name, id->address); + val = camel_internet_address_format_address (id->name, id->address); e_utf8_gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (combo)->entry), val); g_free (val); |