From bdb36cde1858efa8dfdc16ebb7f4baf87a5426da Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 7 Oct 2016 10:32:48 +0300 Subject: loplugin:defaultparams Change-Id: I2bf415d8565c5b290ae2d62d321de58360f79612 --- sc/source/core/data/column2.cxx | 4 ++-- 1 file 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 { -- cgit