aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-08-01 05:23:00 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-08-01 05:23:00 +0800
commit2cbac96e4053164b78b7bca54a0ca3ec86826649 (patch)
treed56645abe1a141e7ecf115a9bf3546130b20e518 /addressbook
parentd01a9081d208108b4b60a1746ac0118c3ef6da68 (diff)
downloadgsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar.gz
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar.bz2
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar.lz
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar.xz
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.tar.zst
gsoc2013-evolution-2cbac96e4053164b78b7bca54a0ca3ec86826649.zip
Change the order so that "New Contact" is first and "New Contact List" is
* gui/component/addressbook-component.c (create_component): Change the order so that "New Contact" is first and "New Contact List" is next. * gui/component-factory.c (create_object): Change the order of the user creatable items a bit so that "New Appointment" and "New Meeting" are at the top when in a calendar folder. * component-factory.c (create_component): Put "New Mail Message" before "New Message Post" instead of vice versa. * evolution-mail-global.xml: Remove "New Mail Message" and "Post Message" items. svn path=/trunk/; revision=17661
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/addressbook-component.c8
2 files changed, 10 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 33e81e6159..70c228ab87 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
2002-07-31 Ettore Perazzoli <ettore@ximian.com>
+ * gui/component/addressbook-component.c (create_component): Change
+ the order so that "New Contact" is first and "New Contact List" is
+ next.
+
+2002-07-31 Ettore Perazzoli <ettore@ximian.com>
+
* gui/component/addressbook-component.c (add_creatable_item): Pass
"contacts" as the @folder_type to
evolution_shell_component_add_user_creatable_item().
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index 7bf4bec508..a8d01563f4 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -577,14 +577,14 @@ create_component (void)
bonobo_object_add_interface (BONOBO_OBJECT (shell_component),
BONOBO_OBJECT (destination_interface));
- add_creatable_item (shell_component, "contact_list",
- _("New Contact List"), _("Contact _List"),
- _("Create a new contact list"), 'l',
- "all_contacts.xpm");
add_creatable_item (shell_component, "contact",
_("New Contact"), _("_Contact"),
_("Create a new contact"), 'c',
"evolution-contacts-mini.png");
+ add_creatable_item (shell_component, "contact_list",
+ _("New Contact List"), _("Contact _List"),
+ _("Create a new contact list"), 'l',
+ "all_contacts.xpm");
gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set",
GTK_SIGNAL_FUNC (owner_set_cb), NULL);