diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-14 06:25:23 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-14 06:25:23 +0800 |
commit | f0024cb0b037033d9e2ce78a2d009c51e5d91317 (patch) | |
tree | 33ebf7da2775df7cad677845045dc753b4beba2a /addressbook/contact-editor/e-contact-editor-address.c | |
parent | 43b8acb68a9b2f949c85dd1a25f902fc4b7b0abe (diff) | |
download | gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar.gz gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar.bz2 gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar.lz gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar.xz gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.tar.zst gsoc2013-evolution-f0024cb0b037033d9e2ce78a2d009c51e5d91317.zip |
Changed these for boolean ascending attribute instead of int ascending
2000-10-13 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor-categories.c,
gui/component/select-names/e-select-names.c,
gui/widgets/e-addressbook-view.c: Changed these for boolean
ascending attribute instead of int ascending attribute. Fixed
e-select-names to not use a column past the end of its array.
* contact-editor/e-contact-editor-address.c,
contact-editor/fulladdr.glade, contact-editor/fulladdr.glade.h:
Rearranged the address editor dialog.
svn path=/trunk/; revision=5904
Diffstat (limited to 'addressbook/contact-editor/e-contact-editor-address.c')
-rw-r--r-- | addressbook/contact-editor/e-contact-editor-address.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/contact-editor/e-contact-editor-address.c b/addressbook/contact-editor/e-contact-editor-address.c index 10160facae..fbba8c9454 100644 --- a/addressbook/contact-editor/e-contact-editor-address.c +++ b/addressbook/contact-editor/e-contact-editor-address.c @@ -181,7 +181,7 @@ fill_in_info(EContactEditorAddress *editor) { ECardDeliveryAddress *address = editor->address; if (address) { - fill_in_field(editor, "text-street" , address->street ); + fill_in_field(editor, "entry-street" , address->street ); fill_in_field(editor, "entry-po" , address->po ); fill_in_field(editor, "entry-ext" , address->ext ); fill_in_field(editor, "entry-city" , address->city ); @@ -207,7 +207,7 @@ extract_info(EContactEditorAddress *editor) ECardDeliveryAddress *address = editor->address; if (!address) address = e_card_delivery_address_new(); - address->street = extract_field(editor, "text-street" ); + address->street = extract_field(editor, "entry-street" ); address->po = extract_field(editor, "entry-po" ); address->ext = extract_field(editor, "entry-ext" ); address->city = extract_field(editor, "entry-city" ); |