diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/GNOME_Evolution_Calendar.server.in.in | 4 | ||||
-rw-r--r-- | calendar/gui/memos-component.c | 2 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/GNOME_Evolution_Calendar.server.in.in b/calendar/gui/GNOME_Evolution_Calendar.server.in.in index fb5d1160cb..ad228ff451 100644 --- a/calendar/gui/GNOME_Evolution_Calendar.server.in.in +++ b/calendar/gui/GNOME_Evolution_Calendar.server.in.in @@ -74,7 +74,7 @@ <oaf_attribute name="evolution:menu_accelerator" type="string" value="*Control*4"/> <oaf_attribute name="evolution:button_label" type="string" _value="Tasks"/> <oaf_attribute name="evolution:button_tooltips" type="string" _value="Tasks"/> - <oaf_attribute name="evolution:button_icon" type="string" value="stock_todo"/> + <oaf_attribute name="evolution:button_icon" type="string" value="evolution-tasks"/> <oaf_attribute name="evolution:button_sort_order" type="string" value="-7"/> <oaf_attribute name="evolution:uri_schemas" type="stringv"> @@ -99,7 +99,7 @@ <oaf_attribute name="evolution:menu_accelerator" type="string" value="*Control*5"/> <oaf_attribute name="evolution:button_label" type="string" _value="Memos"/> <oaf_attribute name="evolution:button_tooltips" type="string" _value="Memos"/> - <oaf_attribute name="evolution:button_icon" type="string" value="stock_notes"/> + <oaf_attribute name="evolution:button_icon" type="string" value="evolution-memos"/> <oaf_attribute name="evolution:button_sort_order" type="string" value="-6"/> </oaf_server> diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c index c6be74977b..89068a7f90 100644 --- a/calendar/gui/memos-component.c +++ b/calendar/gui/memos-component.c @@ -1098,7 +1098,7 @@ create_component_view (MemosComponent *memos_component) GTK_SHADOW_IN); gtk_widget_show (selector_scrolled_window); - component_view->info_label = (EInfoLabel *)e_info_label_new("stock_insert-note"); + component_view->info_label = (EInfoLabel *)e_info_label_new("evolution-memos"); e_info_label_set_info(component_view->info_label, _("Memos"), ""); gtk_widget_show (GTK_WIDGET (component_view->info_label)); diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 4aea88b88f..c8e8b58f49 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -1087,7 +1087,7 @@ create_component_view (TasksComponent *tasks_component) GTK_SHADOW_IN); gtk_widget_show (selector_scrolled_window); - component_view->info_label = (EInfoLabel *)e_info_label_new("stock_task"); + component_view->info_label = (EInfoLabel *)e_info_label_new("evolution-tasks"); e_info_label_set_info(component_view->info_label, _("Tasks"), ""); gtk_widget_show (GTK_WIDGET (component_view->info_label)); |