bug 339343: fix review nit

This commit is contained in:
gavin%gavinsharp.com 2006-05-29 19:04:14 +00:00
parent 0238ba8fee
commit 3d38ae8aa7

View File

@ -1031,7 +1031,7 @@ Engine.prototype = {
case "data":
this._iconURI = uri;
notifyAction(this, SEARCH_ENGINE_CHANGED);
this._hasPreferredIcon = !!aIsPreferred;
this._hasPreferredIcon = aIsPreferred;
break;
case "http":
case "https":
@ -1066,7 +1066,7 @@ Engine.prototype = {
aEngine._serializeToFile();
notifyAction(aEngine, SEARCH_ENGINE_CHANGED);
aEngine._hasPreferredIcon = !!aIsPreferred;
aEngine._hasPreferredIcon = aIsPreferred;
}
var listener = new loadListener(chan, this, iconLoadCallback);