coverity#1422232 Improper use of negative value
Change-Id: I79b24e175906ca5552f45b6af472c436ffde5fe3 Reviewed-on: https://gerrit.libreoffice.org/45247 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
This commit is contained in:
parent
ff92dc75a7
commit
644f1451ab
1 changed files with 1 additions and 1 deletions
|
@ -752,7 +752,7 @@ void Chart2Positioner::createPositionMap()
|
|||
else
|
||||
pCol = it->second;
|
||||
|
||||
sal_uInt32 nInsRow = static_cast<sal_uInt32>(bNoGlue ? nNoGlueRow : nRow1);
|
||||
auto nInsRow = bNoGlue ? nNoGlueRow : nRow1;
|
||||
for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow, ++nInsRow)
|
||||
{
|
||||
ScSingleRefData aCellData;
|
||||
|
|
Loading…
Reference in a new issue