diff options
author | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-03-09 16:11:26 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-03-09 16:11:26 +0800 |
commit | 32771dcb635711acda8030b39c4141deeef95406 (patch) | |
tree | 42da85e0d2421eda7288ccbed9130a989362186e /addressbook/gui/contact-editor | |
parent | 3a7dbcaa99479949ad62b504ae98964bc0b3c67b (diff) | |
download | gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar.gz gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar.bz2 gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar.lz gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar.xz gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.tar.zst gsoc2013-evolution-32771dcb635711acda8030b39c4141deeef95406.zip |
fixed type in contact editor code to make email ui building work
svn path=/trunk/; revision=24996
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 8a7c92e371..5d213fa543 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -3107,7 +3107,7 @@ enable_writable_fields(EContactEditor *editor) e_contact_editor_build_email_ui (editor); for (i = 0; i < G_N_ELEMENTS (emails); i ++) g_hash_table_insert (dropdown_hash, - (char*)e_contact_field_name(phones[i]), + (char*)e_contact_field_name(emails[i]), editor->email_info[i].widget); e_contact_editor_build_address_ui (editor); for (i = E_CONTACT_FIRST_ADDRESS_ID; i <= E_CONTACT_LAST_ADDRESS_ID; i ++) |