Add vendor->sQueued class variable. Not currently used but adding it keeps the vendor class

consistent with other classes.
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-23 23:32:30 +00:00
committed by WineHQ
parent cf81d542ee
commit a5492e199a

View File

@@ -10,6 +10,7 @@ class Vendor {
var $iVendorId;
var $sName;
var $sWebpage;
var $sQueued;
var $aApplicationsIds; // an array that contains the appId of every application linked to this vendor
/**
@@ -37,6 +38,7 @@ class Vendor {
$this->iVendorId = $iVendorId;
$this->sName = $oRow->vendorName;
$this->sWebpage = $oRow->vendorURL;
$this->sQueued = $oRow->queued;
}
/*