From 39526fe2bb1a55e3bc3f56a1c1d3cd3cbb389ebb Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Thu, 4 Nov 2004 16:52:36 +0000 Subject: [PATCH] Fixed various errors (not part of the build). --- calendar/base/public/calICalendar.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calendar/base/public/calICalendar.idl b/calendar/base/public/calICalendar.idl index 47ebc3364d53..42a8cede3f7e 100644 --- a/calendar/base/public/calICalendar.idl +++ b/calendar/base/public/calICalendar.idl @@ -78,7 +78,7 @@ interface calICalendar : nsISupports * XXX what do we guarantee about item ordering, especially w.r.t. * which items are returned when aCount != 0 */ - void getItems( in nsID aItemType, in unsigned long aItemFilter, + void getItems( in nsIIDRef aItemType, in unsigned long aItemFilter, in unsigned long aCount, in calIDateTime aRangeStart, in calIDateTime aRangeEnd, in calIOperationListener aListener ); @@ -118,8 +118,8 @@ interface calIOperationListener : nsISupports /** * for getItem and getItems */ - void onGetComplete(in nsresult aStatus, in nsID aItemType, - in nISupports aDetail, in PRUint32 aCount, + void onGetComplete(in nsresult aStatus, in nsIIDRef aItemType, + in nsISupports aDetail, in PRUint32 aCount, [array, size_is(aCount), iid_is(aItemType)] in nsQIResult aItems ); };