fixed error in sheets()

git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@116982 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xavier Noguer Gallego 2003-02-18 19:08:11 +00:00
parent 5cdea13592
commit 906d894793
1 changed files with 4 additions and 1 deletions

View File

@ -196,17 +196,20 @@ class Workbook extends BIFFwriter
/** /**
* An accessor for the _worksheets[] array * An accessor for the _worksheets[] array
* Returns an array of the worksheet objects in a workbook * Returns an array of the worksheet objects in a workbook
* It actually calls to worksheets()
* *
* @access public * @access public
* @see worksheets()
* @return array * @return array
*/ */
function sheets() function sheets()
{ {
return($this->_worksheets()); return $this->worksheets();
} }
/** /**
* An accessor for the _worksheets[] array. * An accessor for the _worksheets[] array.
* Returns an array of the worksheet objects in a workbook
* *
* @access public * @access public
* @return array * @return array