Bug 309814 fireEvent should report exceptions using Components.utils.reportError, r=mconnor

This commit is contained in:
jminta%gmail.com 2006-05-17 00:46:00 +00:00
Родитель c833b6618a
Коммит 9755d67b98
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -223,7 +223,7 @@
return !cancel;
}
catch (e) {
dump(e);
Components.utils.reportError(e);
}
return false;
]]>

Просмотреть файл

@ -691,7 +691,7 @@
return !cancel;
}
catch (e) {
dump(e);
Components.utils.reportError(e);
}
return false;
]]>