diff options
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f36910bb57..564903cc67 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2004-08-28 JP Rosevear <jpr@novell.com> + + * gui/e-itip-control.c (rsvp_clicked_cb): get the active state + (insert_rsvp): set inital rsvp state + + * gui/alarm-notify/alarm-queue.c (alarm_queue_add_client): load + immediately if they are loaded + 2004-08-27 Rodrigo Moya <rodrigo@novell.com> * gui/alarm-notify/alarm-queue.c (load_alarms): use the diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index 433f121e55..d7047d98ea 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -1310,7 +1310,7 @@ alarm_queue_add_client (ECal *client) ca->uid_alarms_hash = g_hash_table_new (g_str_hash, g_str_equal); - if (e_cal_get_load_state (client) != E_CAL_LOAD_LOADED) { + if (e_cal_get_load_state (client) == E_CAL_LOAD_LOADED) { load_alarms_for_today (ca); load_missed_alarms (ca); } else { |