diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index cf0cda11dd..6a36e43b96 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2002-06-25 Chris Toshok <toshok@ximian.com> + + * gui/component/addressbook-component.c (create_component): + reorder the adding of creatable items so the default is a new + contact, not a new contact list. + 2002-06-21 Sean Atkinson <sean@cantab.net> * gui/component/addressbook-config.c (addressbook_edit_server_dialog): diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index ed135f98db..acfdad8128 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -574,12 +574,12 @@ create_component (void) bonobo_object_add_interface (BONOBO_OBJECT (shell_component), BONOBO_OBJECT (destination_interface)); - add_creatable_item (shell_component, "contact", - _("New Contact"), _("_Contact"), 'c', - "evolution-contacts-mini.png"); add_creatable_item (shell_component, "contact_list", _("New Contact List"), _("Contact _List"), 'l', "all_contacts.xpm"); + add_creatable_item (shell_component, "contact", + _("New Contact"), _("_Contact"), 'c', + "evolution-contacts-mini.png"); gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set", GTK_SIGNAL_FUNC (owner_set_cb), NULL); |