fix recursive function bug

This commit is contained in:
thunder@thunder-mbp.local 2007-10-12 22:58:38 -07:00
parent cd475eed65
commit 6c2aa6b5c1

View File

@ -1036,7 +1036,7 @@ BookmarksSyncService.prototype = {
node.QueryInterface(Ci.nsINavHistoryQueryResultNode);
node.containerOpen = true;
for (var i = 0; i < node.childCount; i++) {
this._resetGUIDs(node.getChild(i));
this._resetGUIDsInt(node.getChild(i));
}
}
},