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:
parent
5cdea13592
commit
906d894793
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue