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

git-svn-id: svn://10.0.0.236/trunk@227002 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rflint%ryanflint.com 2007-05-25 09:45:19 +00:00
parent 4fa7637d45
commit 85e51c3ef4

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); }
}
},