* put QP Decoder intoo its own file
[citadel.git] / webcit / calendar.c
index 4bef7441dff6879c146891514c7e159e4bfa8986..9013ad3b11750dbd6c6b8849728dc3e95c234027 100644 (file)
@@ -996,15 +996,15 @@ void load_ical_object(long msgnum, int unread,
 /*
  * Display a calendar item
  */
-void load_calendar_item(long msgnum, int unread, struct calview *c) {
-       load_ical_object(msgnum, unread, ICAL_VEVENT_COMPONENT, display_individual_cal, c);
+void load_calendar_item(message_summary *Msg, int unread, struct calview *c) {
+       load_ical_object(Msg->msgnum, unread, ICAL_VEVENT_COMPONENT, display_individual_cal, c);
 }
 
 /*
  * Display task view
  */
-void display_task(long msgnum, int unread) {
-       load_ical_object(msgnum, unread, ICAL_VTODO_COMPONENT, display_individual_cal, NULL);
+void display_task(message_summary *Msg, int unread) {
+       load_ical_object(Msg->msgnum, unread, ICAL_VTODO_COMPONENT, display_individual_cal, NULL);
 }
 
 /*