aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-06-26 04:26:30 +0800
committerChris Toshok <toshok@src.gnome.org>2002-06-26 04:26:30 +0800
commit9552c757eeb11961a9d2040eb0e765c99012cd97 (patch)
tree9a75588f7c97f4173e00bd6273ded382e51594be /addressbook/gui
parent5a70e4fee0d9f439c8da85b4f65739161fd364fd (diff)
downloadgsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar
gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.gz
gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.bz2
gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.lz
gsoc2013-evolution-9552c757eeb11961a9d2040eb0e765c99012cd97.tar.xz
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
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/component/addressbook-component.c6
1 files changed, 3 insertions, 3 deletions
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);