Checked in patches for bug 242980

This commit is contained in:
mostafah%oeone.com 2004-05-10 15:02:04 +00:00
parent b519adbcb7
commit 46a2759467
2 changed files with 5 additions and 2 deletions

View File

@ -524,7 +524,9 @@ var treeView =
getCellText : function(row,column)
{
calendarEvent = gEventArray[row];
switch( column.id )
// Moz1.8 trees require column.id, moz1.7 and earlier trees use column.
switch( column.id || column )
{
case "unifinder-search-results-tree-col-title":
return( calendarEvent.title );

View File

@ -380,7 +380,8 @@ var toDoTreeView =
if( !calendarToDo )
return false;
switch( column.id )
// Moz1.8 trees require column.id, moz1.7 and earlier trees use column.
switch( column.id || column )
{
case "unifinder-todo-tree-col-completed":
return( "" );