General performance improvements, and specific improvements in the CSV Reader

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@65064 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker
2010-12-09 12:07:50 +00:00
parent 500a8e763e
commit 1fad8bd2dd
23 changed files with 800 additions and 902 deletions
+5 -8
View File
@@ -37,30 +37,27 @@ class PHPExcel_Worksheet_SheetView
{
/**
* ZoomScale
*
*
* Valid values range from 10 to 400.
*
* @var int
*/
private $_zoomScale;
private $_zoomScale = 100;
/**
* ZoomScaleNormal
*
*
* Valid values range from 10 to 400.
*
* @var int
*/
private $_zoomScaleNormal;
private $_zoomScaleNormal = 100;
/**
* Create a new PHPExcel_Worksheet_SheetView
*/
public function __construct()
{
// Initialise values
$this->_zoomScale = 100;
$this->_zoomScaleNormal = 100;
}
/**
@@ -91,7 +88,7 @@ class PHPExcel_Worksheet_SheetView
}
return $this;
}
/**
* Get ZoomScaleNormal
*