Bug 628258 - inverted method arguments in treeView.js::_buildVisibleSection.

r+a=dietrich
This commit is contained in:
Marco Bonardo 2011-01-27 12:18:17 +01:00
parent 30aba18ae5
commit e8af7e9d58

View File

@ -336,8 +336,7 @@ PlacesTreeView.prototype = {
if (isopen != curChild.containerOpen)
aToOpen.push(curChild);
else if (curChild.containerOpen && curChild.childCount > 0)
rowsInserted += this._buildVisibleSection(curChild, aToOpen,
row + 1);
rowsInserted += this._buildVisibleSection(curChild, row + 1, aToOpen);
}
}