Bug 381903 - WARNING: Components.reportError deprecated, use Components.utils.reportError in treeView.js. Patch by Ryan Jones <sciguyryan@gmail.com>, r=mano

This commit is contained in:
rflint@ryanflint.com 2007-05-25 02:45:19 -07:00
parent c4def1c018
commit 89b164dd07

View File

@ -791,7 +791,7 @@ PlacesTreeView.prototype = {
var obs = this._observers[i];
obs[aFunctionName].apply(obs, aArgs);
}
catch (ex) { Components.reportError(ex); }
catch (ex) { Components.utils.reportError(ex); }
}
},