Add a missing Table::AddRow() call and clean up some whitespace

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-09-08 01:41:23 +00:00
committed by WineHQ
parent 38f7214406
commit f07272f089

View File

@@ -690,14 +690,13 @@ class version {
$oTableCell->SetClass("color0"); $oTableCell->SetClass("color0");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTable->AddRow($oTableRow);
$oTableRow = new TableRow(); $oTableRow = new TableRow();
$oTableCell = new TableCell("Release"); $oTableCell = new TableCell("Release");
$oTableCell->SetClass("color1"); $oTableCell->SetClass("color1");
$oTableRow->AddCell($oTableCell); $oTableRow->AddCell($oTableCell);
$oTableCell = new TableCell(make_bugzilla_version_list("sMaintainerRelease", $this->sTestedRelease)); $oTableCell = new TableCell(make_bugzilla_version_list("sMaintainerRelease", $this->sTestedRelease));
$oTableCell->SetClass("color0"); $oTableCell->SetClass("color0");