Fix references to private PHPExcel_Reader_Excel5 methods in PHPExcel_Reader_Excel5_Escher

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@65003 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2010-12-07 22:54:29 +00:00
parent c5ea92442d
commit ac13feadec
1 changed files with 2 additions and 2 deletions

View File

@ -6110,7 +6110,7 @@ class PHPExcel_Reader_Excel5 implements PHPExcel_Reader_IReader
* @param int $pos * @param int $pos
* @return int * @return int
*/ */
private static function _GetInt2d($data, $pos) public static function _GetInt2d($data, $pos)
{ {
return ord($data[$pos]) | (ord($data[$pos + 1]) << 8); return ord($data[$pos]) | (ord($data[$pos + 1]) << 8);
} }
@ -6122,7 +6122,7 @@ class PHPExcel_Reader_Excel5 implements PHPExcel_Reader_IReader
* @param int $pos * @param int $pos
* @return int * @return int
*/ */
private static function _GetInt4d($data, $pos) public static function _GetInt4d($data, $pos)
{ {
// FIX: represent numbers correctly on 64-bit system // FIX: represent numbers correctly on 64-bit system
// http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334 // http://sourceforge.net/tracker/index.php?func=detail&aid=1487372&group_id=99160&atid=623334