mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 13:45:46 +00:00
Bug 324735 Remove some references to obsolete calIItemOccurence interface. patch by robin.edrenius@gmail.com, r=jminta
This commit is contained in:
parent
38b7557332
commit
35560c9506
@ -42,7 +42,7 @@
|
||||
interface calICalendar;
|
||||
interface calIDateTime;
|
||||
interface calIEvent;
|
||||
interface calIItemOccurrence;
|
||||
interface calIItemBase;
|
||||
|
||||
[scriptable, uuid(1f783898-f4c2-4b2d-972e-360e0de38237)]
|
||||
interface calICalendarViewController : nsISupports
|
||||
@ -76,7 +76,7 @@ interface calICalendarViewController : nsISupports
|
||||
* Modify aOccurrence. If aNewStartTime and aNewEndTime are given,
|
||||
* update the event to those times. Otherwise ask the user to modify.
|
||||
*/
|
||||
void modifyOccurrence (in calIItemOccurrence aOccurrence,
|
||||
void modifyOccurrence (in calIItemBase aOccurrence,
|
||||
in calIDateTime aNewStartTime,
|
||||
in calIDateTime aNewEndTime);
|
||||
|
||||
@ -85,6 +85,6 @@ interface calICalendarViewController : nsISupports
|
||||
* just this occurrence or all occurrences, and do whatever else
|
||||
* is appropriate.
|
||||
*/
|
||||
void deleteOccurrence (in calIItemOccurrence aOccurrence);
|
||||
void deleteOccurrence (in calIItemBase aOccurrence);
|
||||
};
|
||||
|
||||
|
@ -159,7 +159,7 @@ interface calIRecurrenceInfo : nsISupports
|
||||
out unsigned long aCount, [array,size_is(aCount),retval] out calIDateTime aDates);
|
||||
|
||||
/**
|
||||
* Return an array of calIItemOccurrence representing all
|
||||
* Return an array of calIItemBase representing all
|
||||
* occurrences of this event between start (inclusive) and end (non-inclusive).
|
||||
*/
|
||||
void getOccurrences (in calIDateTime aRangeStart,
|
||||
|
@ -40,7 +40,6 @@
|
||||
|
||||
interface calIItemBase;
|
||||
interface calIDateTime;
|
||||
interface calIItemOccurrence;
|
||||
|
||||
interface calIIcalProperty;
|
||||
|
||||
|
@ -348,7 +348,6 @@ calMemoryCalendar.prototype = {
|
||||
const calIItemBase = Components.interfaces.calIItemBase;
|
||||
const calIEvent = Components.interfaces.calIEvent;
|
||||
const calITodo = Components.interfaces.calITodo;
|
||||
const calIItemOccurrence = Components.interfaces.calIItemOccurrence;
|
||||
const calIRecurrenceInfo = Components.interfaces.calIRecurrenceInfo;
|
||||
|
||||
var itemsFound = Array();
|
||||
|
Loading…
x
Reference in New Issue
Block a user