Make objectGetTableRow() return a TableRow class instance. Added accessors to set the

appropriate parameters in the TableRow class. Removed some unused parameters from the TableRow
class.
This commit is contained in:
Chris Morgan
2007-07-02 00:35:17 +00:00
committed by WineHQ
parent 15cd979264
commit 62bfb16016
9 changed files with 52 additions and 30 deletions

View File

@@ -503,7 +503,8 @@ class appData
$oApp->objectMakeLink(),
$this->iVersionId ? $oVersion->objectMakeLink() : "N/A");
return array($aCells, null, false, null);
$oTableRow = new TableRow($aCells);
return $oTableRow;
}
function objectDisplayQueueProcessingHelp()