diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-18 04:21:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-18 04:21:59 +0800 |
commit | dcbef9a9993e0508c21ec9fa7a6c34fa4859732c (patch) | |
tree | 18755ce619d68170cc5eb6d3321b2ec732188b7f /calendar | |
parent | a48a529f73db4ef16fe3e59fa91299fbf710820c (diff) | |
download | gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.gz gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.zst gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.zip |
Change E_PIXMAP size args over to E_ICON_SIZE_* values.
2004-05-17 Jeffrey Stedfast <fejj@novell.com>
* gui/calendar-commands.c (pixmaps): Change E_PIXMAP size args
over to E_ICON_SIZE_* values.
svn path=/trunk/; revision=25940
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/gui/calendar-commands.c | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 3756c32256..4e9c5c6c36 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,8 @@ 2004-05-17 Jeffrey Stedfast <fejj@novell.com> + * gui/calendar-commands.c (pixmaps): Change E_PIXMAP size args + over to E_ICON_SIZE_* values. + * gui/tasks-component.c (add_popup_menu_item): Use E_ICON_SIZE_MENU diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index 3b5242ebc7..0755ca6863 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -63,6 +63,7 @@ #include "e-pub-utils.h" #include "e-cal-list-view.h" #include "evolution-shell-component-utils.h" +#include "e-util/e-icon-factory.h" /* Focusing information for the calendar view. We have to keep track of this * ourselves because with Bonobo controls, we may get unpaired focus_out events. @@ -715,11 +716,11 @@ static BonoboUIVerb verbs [] = { static EPixmap pixmaps [] = { - E_PIXMAP ("/Toolbar/DayView", "stock_calendar-view-day", 24), - E_PIXMAP ("/Toolbar/WorkWeekView", "stock_calendar-view-work-week", 24), - E_PIXMAP ("/Toolbar/WeekView", "stock_calendar-view-week", 24), - E_PIXMAP ("/Toolbar/MonthView", "stock_calendar-view-month", 24), - E_PIXMAP ("/Toolbar/ListView", "stock_calendar-view-list", 24), + E_PIXMAP ("/Toolbar/DayView", "stock_calendar-view-day", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/Toolbar/WorkWeekView", "stock_calendar-view-work-week", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/Toolbar/WeekView", "stock_calendar-view-week", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/Toolbar/MonthView", "stock_calendar-view-month", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/Toolbar/ListView", "stock_calendar-view-list", E_ICON_SIZE_LARGE_TOOLBAR), E_PIXMAP_END }; |