Minor bugfixes

This commit is contained in:
MarkBaker 2015-03-09 23:59:13 +00:00
parent de9fc7b888
commit d3148bdcdb
1 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ class PHPExcel_Shared_Font
// Special case if there are one or more newline characters ("\n")
if (strpos($cellText, "\n") !== false) {
$lineTexts = explode("\n", $cellText);
$lineWitdhs = array();
$lineWidths = array();
foreach ($lineTexts as $lineText) {
$lineWidths[] = self::calculateColumnWidth($font, $lineText, $rotation = 0, $defaultFont);
}
@ -274,7 +274,7 @@ class PHPExcel_Shared_Font
// and addition because Excel adds some padding, just use approx width of 'n' glyph
$columnWidth = self::getTextWidthPixelsExact($cellText, $font, $rotation) + $columnWidthAdjust;
} catch (PHPExcel_Exception $e) {
$approximate == true;
$approximate = true;
}
}