diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 2 | ||||
-rw-r--r-- | calendar/gui/e-calendar-table.c | 3 |
3 files changed, 10 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 0eb4e2b263..0c5dd186f1 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2004-03-29 Rodrigo Moya <rodrigo@ximian.com> + + * gui/alarm-notify/alarm-queue.c (query_objects_changed_cb): removed + misplaced return statement that prevented the rest of the objects list + to be processed. + 2004-03-29 Kidd Wang <kidd.wang@sun.com> * gui/e-calendar-view.c: (e_calendar_view_class_init): remove the diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index 41088a3c7e..b6f46ea859 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -538,7 +538,7 @@ query_objects_changed_cb (ECal *client, GList *objects, gpointer data) if (!found) { remove_comp (ca, uid); - return; + continue; } cqa = lookup_comp_queued_alarms (ca, uid); diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index b64378b1b8..b792f4a35d 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -492,6 +492,9 @@ e_calendar_table_init (ECalendarTable *cal_table) } cell = e_cell_toggle_new (0, E_CALENDAR_MODEL_NUM_ICONS, icon_pixbufs); + g_object_set (G_OBJECT (cell), + "bg_color_column", E_CAL_MODEL_FIELD_COLOR, + NULL); e_table_extras_add_cell(extras, "icon", cell); e_table_extras_add_pixbuf(extras, "icon", icon_pixbufs[0]); |