diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-18 03:53:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-18 03:53:11 +0800 |
commit | 2b5742659639ceb7069ef7e78ee3a98f06d5eeb7 (patch) | |
tree | 9db13914df5e37e61dd6c7504c430823872394a1 /calendar/gui/calendar-component.c | |
parent | 2c71a3328a34e23efdc5b52529ef975c01370c7a (diff) | |
download | gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.gz gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.zst gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.zip |
Use E_ICON_SIZE_MENU
2004-05-17 Jeffrey Stedfast <fejj@novell.com>
* gui/tasks-component.c (add_popup_menu_item): Use
E_ICON_SIZE_MENU
* gui/e-timezone-entry.c (e_timezone_entry_init): Use
E_ICON_SIZE_BUTTON
* gui/e-itip-control.c (write_error_html): Use E_ICON_SIZE enums.
(write_html): Same.
* gui/e-calendar-view.c (e_calendar_view_set_status_message): Use
E_ICON_SIZE_STATUS
(setup_popup_icons): Use E_ICON_SIZE_MENU
* gui/e-calendar-table.c (e_calendar_table_init): Use
E_ICON_SIZE_LIST rather than a hard-coded value of 16 pixels.
(e_calendar_table_set_status_message): Use E_ICON_SIZE_STATUS
* gui/calendar-component.c (add_popup_menu_item): Use
E_ICON_SIZE_MENU rather than hard-coding the pixel size.
svn path=/trunk/; revision=25934
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 74cd196560..61f0aae690 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -318,7 +318,7 @@ add_popup_menu_item (GtkMenu *menu, const char *label, const char *icon_name, item = gtk_image_menu_item_new_with_label (label); /* load the image */ - pixbuf = e_icon_factory_get_icon (icon_name, 16); + pixbuf = e_icon_factory_get_icon (icon_name, E_ICON_SIZE_MENU); image = gtk_image_new_from_pixbuf (pixbuf); if (image) { |