Don't throw an uncaught exception on cancel. Bug 91056, patch by

law@netscape.com, r=bzbarsky, sr=jag, a=asa
This commit is contained in:
bzbarsky%mit.edu 2002-03-02 01:02:16 +00:00
Родитель e263f7d7f4
Коммит fdb372df0f
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -159,7 +159,8 @@ nsHelperAppDialog.prototype = {
var dlgResult = picker.show();
if ( dlgResult == nsIFilePicker.returnCancel ) {
throw Components.results.NS_ERROR_FAILURE;
// Null result means user cancelled.
return null;
}