diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-10-07 10:32:48 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-10-07 10:33:11 +0300 |
commit | bdb36cde1858efa8dfdc16ebb7f4baf87a5426da (patch) | |
tree | f8aef02309118d2d5fb1dbfc7acce4c2b8506dc7 | |
parent | ade43e6a86e4f864e771f4b3008a428bc10fa55f (diff) |
loplugin:defaultparams
Change-Id: I2bf415d8565c5b290ae2d62d321de58360f79612
-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 { |