diff options
author | Chris Toshok <toshok@ximian.com> | 2002-06-26 04:26:30 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-06-26 04:26:30 +0800 |
commit | 9552c757eeb11961a9d2040eb0e765c99012cd97 (patch) | |
tree | 9a75588f7c97f4173e00bd6273ded382e51594be | |
parent | 5a70e4fee0d9f439c8da85b4f65739161fd364fd (diff) | |
download | gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.gz gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.zst gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.zip |
reorder the adding of creatable items so the default is a new contact, not
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.
svn path=/trunk/; revision=17279
-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); |