Use multipage controls for application lists

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-07-28 20:08:50 +00:00
committed by WineHQ
parent f37fa6e42f
commit 09107d7142
2 changed files with 55 additions and 8 deletions

View File

@@ -292,9 +292,20 @@ class application_queue
return TRUE;
}
function objectGetEntries($bQueued, $bRejected)
function objectGetItemsPerPage($bQueued = false)
{
return $this->oApp->objectGetEntries($bQueued, $bRejected);
return $this->oApp->objectGetItemsPerPage($bQueued);
}
function objectGetEntriesCount($bQueued, $bRejected)
{
return $this->oApp->objectGetEntriesCount($bQueued, $bRejected);
}
function objectGetEntries($bQueued, $bRejected, $iRows = 0, $iStart = 0, $sOrderBy = "appId")
{
return $this->oApp->objectGetEntries($bQueued, $bRejected, $iRows, $iStart,
$sOrderBy);
}
function objectGetHeader()