aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-18 04:21:59 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-18 04:21:59 +0800
commitdcbef9a9993e0508c21ec9fa7a6c34fa4859732c (patch)
tree18755ce619d68170cc5eb6d3321b2ec732188b7f /calendar/gui
parenta48a529f73db4ef16fe3e59fa91299fbf710820c (diff)
downloadgsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar
gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.gz
gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.bz2
gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.lz
gsoc2013-evolution-dcbef9a9993e0508c21ec9fa7a6c34fa4859732c.tar.xz
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/gui')
-rw-r--r--calendar/gui/calendar-commands.c11
1 files changed, 6 insertions, 5 deletions
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
};