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 | |
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
-rw-r--r-- | addressbook/ChangeLog | 4 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 712f6a5c67..4d930d85c6 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,7 @@ +2004-03-08 Sivaiah Nallagatla <snallagatla@novell.com> + * gui/contact-editor/e-contact-editor.c (enable_writable_fields): + fixed a typo, which is causing probelm in building up email ui + 2004-03-04 Sivaiah Nallagatla <snallagatla@novell.com> * gui/component/addressbook-config.c : 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 ++) |