This commit is contained in:
mozilla.mano@sent.com 2008-03-16 23:39:42 -07:00
Родитель 80840e283c
Коммит 4783fb4d38
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1364,7 +1364,7 @@ PlacesTreeView.prototype = {
var node = this.nodeForTreeIndex(aRow); var node = this.nodeForTreeIndex(aRow);
if (node.title != aText) { if (node.title != aText) {
var txn = PlacesUIUtils.ptm.editItemTitle(node.itemId, aText); var txn = PlacesUIUtils.ptm.editItemTitle(node.itemId, aText);
PlacesUtils.ptm.doTransaction(txn); PlacesUIUtils.ptm.doTransaction(txn);
} }
}, },