mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2024-11-25 14:56:04 +03:00
Merge fix to style duplication from the 1.x develop branch
This commit is contained in:
parent
186302db5d
commit
4bd9df5c81
@ -424,7 +424,7 @@ class Style extends Style_Supervisor implements IComparable
|
|||||||
$newStyle = clone $style;
|
$newStyle = clone $style;
|
||||||
$newStyle->applyFromArray($pStyles);
|
$newStyle->applyFromArray($pStyles);
|
||||||
|
|
||||||
if ($workbook->cellXfExists($newStyle)) {
|
if ($existingStyle = $workbook->getCellXfByHashCode($newStyle->getHashCode())) {
|
||||||
// there is already such cell Xf in our collection
|
// there is already such cell Xf in our collection
|
||||||
$newXfIndexes[$oldXfIndex] = $existingStyle->getIndex();
|
$newXfIndexes[$oldXfIndex] = $existingStyle->getIndex();
|
||||||
} else {
|
} else {
|
||||||
|
@ -1478,9 +1478,9 @@ class Worksheet implements IComparable
|
|||||||
|
|
||||||
// Add the style to the workbook if necessary
|
// Add the style to the workbook if necessary
|
||||||
$workbook = $this->_parent;
|
$workbook = $this->_parent;
|
||||||
if ($this->_parent->cellXfExists($pCellStyle)) {
|
if ($existingStyle = $this->_parent->getCellXfByHashCode($pCellStyle->getHashCode())) {
|
||||||
// there is already this cell Xf in our collection
|
// there is already such cell Xf in our collection
|
||||||
$xfIndex = $pCellStyle->getIndex();
|
$xfIndex = $existingStyle->getIndex();
|
||||||
} else {
|
} else {
|
||||||
// we don't have such a cell Xf, need to add
|
// we don't have such a cell Xf, need to add
|
||||||
$workbook->addCellXf($pCellStyle);
|
$workbook->addCellXf($pCellStyle);
|
||||||
|
Loading…
Reference in New Issue
Block a user