diff options
author | 3 <jpr@ximian.com> | 2002-07-24 03:04:48 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-07-24 03:04:48 +0800 |
commit | 592c4df236c6b872ded93de22519b6dff7e0a644 (patch) | |
tree | 6b663ee5a9820b5ae21ae27097aeb6432833d2b3 | |
parent | 761efc48f559ed05c3d2b3baf780547d6179a7cd (diff) | |
download | gsoc2013-evolution-592c4df236c6b872ded93de22519b6dff7e0a644.tar.gz gsoc2013-evolution-592c4df236c6b872ded93de22519b6dff7e0a644.tar.zst gsoc2013-evolution-592c4df236c6b872ded93de22519b6dff7e0a644.zip |
use proper meeting icon
2002-07-23 <jpr@ximian.com>
* gui/e-day-view.c (e_day_view_realize): use proper meeting icon
svn path=/trunk/; revision=17553
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/e-day-view.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 7a88b874ad..cb6e39a197 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2002-07-23 <jpr@ximian.com> + + * gui/e-day-view.c (e_day_view_realize): use proper meeting icon + 2002-07-22 Dan Winship <danw@ximian.com> * pcs/Makefile.am: Split pcs-backend-file out of libpcs and build diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 144d82c0ad..b8aa114aeb 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -70,6 +70,7 @@ #include "art/bell.xpm" #include "art/recur.xpm" #include "art/timezone-16.xpm" +#include "art/schedule-meeting-16.xpm" /* The minimum amount of space wanted on each side of the date string. */ #define E_DAY_VIEW_DATE_X_PAD 4 @@ -1078,7 +1079,7 @@ e_day_view_realize (GtkWidget *widget) day_view->reminder_icon = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, &day_view->reminder_mask, NULL, bell_xpm); day_view->recurrence_icon = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, &day_view->recurrence_mask, NULL, recur_xpm); day_view->timezone_icon = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, &day_view->timezone_mask, NULL, timezone_16_xpm); - day_view->meeting_icon = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, &day_view->meeting_mask, NULL, timezone_16_xpm); + day_view->meeting_icon = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, &day_view->meeting_mask, NULL, schedule_meeting_16_xpm); |