diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a0e3fcbbef..3c26705674 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2002-07-02 Ettore Perazzoli <ettore@ximian.com> + + * gui/component/addressbook-component.c (add_creatable_item): New + arg @tooltip; pass it to + evolution_shell_component_add_user_creatable_item() [which now has + a @tooltip arg]. + 2002-06-29 Chris Toshok <toshok@ximian.com> * backend/pas/Makefile.am (libpas_a_SOURCES): add diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index acfdad8128..7e2d40583d 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -527,6 +527,7 @@ add_creatable_item (EvolutionShellComponent *shell_component, const char *id, const char *description, const char *menu_description, + const char *tooltip, char menu_shortcut, const char *icon_name) { @@ -545,6 +546,7 @@ add_creatable_item (EvolutionShellComponent *shell_component, id, description, menu_description, + tooltip, menu_shortcut, icon); @@ -575,10 +577,12 @@ create_component (void) BONOBO_OBJECT (destination_interface)); add_creatable_item (shell_component, "contact_list", - _("New Contact List"), _("Contact _List"), 'l', + _("New Contact List"), _("Contact _List"), + _("Create a new contact list"), 'l', "all_contacts.xpm"); add_creatable_item (shell_component, "contact", - _("New Contact"), _("_Contact"), 'c', + _("New Contact"), _("_Contact"), + _("Create a new contact"), 'c', "evolution-contacts-mini.png"); gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set", |