From f0024cb0b037033d9e2ce78a2d009c51e5d91317 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Fri, 13 Oct 2000 22:25:23 +0000 Subject: Changed these for boolean ascending attribute instead of int ascending 2000-10-13 Christopher James Lahey * 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 --- addressbook/contact-editor/e-contact-editor-address.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'addressbook/contact-editor/e-contact-editor-address.c') 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" ); -- cgit v1.2.3