зеркало из https://github.com/mozilla/pjs.git
XPConnect doesn't like null iid params; r=vlad
This commit is contained in:
Родитель
273680aa96
Коммит
87c4234779
|
@ -381,7 +381,10 @@ calCompositeGetListenerHelper.prototype = {
|
||||||
if (!Components.isSuccessCode(aStatus)) {
|
if (!Components.isSuccessCode(aStatus)) {
|
||||||
// proxy this to a onGetResult
|
// proxy this to a onGetResult
|
||||||
// XXX - do we want to give the real calendar? or this?
|
// XXX - do we want to give the real calendar? or this?
|
||||||
this.mRealListener.onGetResult (aCalendar, aStatus, null, aDetail, 0, []);
|
// XXX - get rid of iid param
|
||||||
|
this.mRealListener.onGetResult (aCalendar, aStatus,
|
||||||
|
Components.interfaces.nsISupports,
|
||||||
|
aDetail, 0, []);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.mReceivedCompletes++;
|
this.mReceivedCompletes++;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче