From 9c8c46e963c3c80a2b2141c6a9a70478ece4649b Mon Sep 17 00:00:00 2001 From: "cmanske%netscape.com" Date: Fri, 2 Jun 2000 23:15:37 +0000 Subject: [PATCH] Fixed list box bustage. b=36366. r=sfraser, a=beppe git-svn-id: svn://10.0.0.236/trunk@71412 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/ui/dialogs/content/EdDialogCommon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/editor/ui/dialogs/content/EdDialogCommon.js b/mozilla/editor/ui/dialogs/content/EdDialogCommon.js index 0bca40cb24c..ad39a79a51d 100644 --- a/mozilla/editor/ui/dialogs/content/EdDialogCommon.js +++ b/mozilla/editor/ui/dialogs/content/EdDialogCommon.js @@ -472,7 +472,7 @@ function ClearTreelist(tree) function GetSelectedTreelistAttribute(tree, attr) { if (tree) - return tree.selectedCells[0].getAttribute(attr); + return tree.selectedItems[0].firstChild.firstChild.getAttribute(attr); return ""; }