diff options
-rw-r--r-- | sc/source/core/data/column2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx index 063e14e5d10f..0538c0ef92ea 100644 --- a/sc/source/core/data/column2.cxx +++ b/sc/source/core/data/column2.cxx @@ -581,7 +581,7 @@ class MaxStrLenFinder Color* pColor; OUString aValStr; ScCellFormat::GetString( - rCell, mnFormat, aValStr, &pColor, *mrDoc.GetFormatTable(), &mrDoc, true, false); + rCell, mnFormat, aValStr, &pColor, *mrDoc.GetFormatTable(), &mrDoc); if (aValStr.getLength() > mnMaxLen) { @@ -668,7 +668,7 @@ sal_uInt16 ScColumn::GetOptimalColWidth( { ScRefCellValue aCell = GetCellValue(pParam->mnMaxTextRow); ScCellFormat::GetString( - aCell, nFormat, aLongStr, &pColor, *pFormatter, pDocument, true, false); + aCell, nFormat, aLongStr, &pColor, *pFormatter, pDocument); } else { |