diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-11-19 01:04:27 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-11-19 01:04:27 +0800 |
commit | 0a180cd281b24884587a1ddf065bdf475ab9659b (patch) | |
tree | 1412c83e344a1ba4e323e3bf3658bf4563690525 /calendar/gui/calendar-component.c | |
parent | 7dc8678d2fbc7a3d2f876f11118165bf81cb2aca (diff) | |
download | gsoc2013-evolution-0a180cd281b24884587a1ddf065bdf475ab9659b.tar.gz gsoc2013-evolution-0a180cd281b24884587a1ddf065bdf475ab9659b.tar.zst gsoc2013-evolution-0a180cd281b24884587a1ddf065bdf475ab9659b.zip |
removed the 'New...' menu items from the UI, it's now implemented in the
2003-11-18 Rodrigo Moya <rodrigo@ximian.com>
* gui/calendar-commands.c
(calendar_control_sensitize_calendar_commands,
sensitize_taskpad_commands): removed the 'New...' menu items
from the UI, it's now implemented in the shell.
svn path=/trunk/; revision=23421
Diffstat (limited to 'calendar/gui/calendar-component.c')
-rw-r--r-- | calendar/gui/calendar-component.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index db6a8fc275..6305cda984 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -338,7 +338,7 @@ fill_popup_menu_cb (ESourceSelector *selector, GtkMenu *menu, CalendarComponent sensitive = e_source_selector_peek_primary_selection (E_SOURCE_SELECTOR (comp->priv->source_selector)) ? TRUE : FALSE; - add_popup_menu_item (menu, _("New Calendar"), NULL, G_CALLBACK (new_calendar_cb), comp, TRUE); + add_popup_menu_item (menu, _("New Calendar"), GTK_STOCK_NEW, G_CALLBACK (new_calendar_cb), comp, TRUE); add_popup_menu_item (menu, _("Delete"), GTK_STOCK_DELETE, G_CALLBACK (delete_calendar_cb), comp, sensitive); add_popup_menu_item (menu, _("Rename"), NULL, G_CALLBACK (rename_calendar_cb), comp, sensitive); } |