Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
cdd0a14 got pushed now after it got a Jenkins
verification in September, and now fails because of my change
from November.

Change-Id: I6472444a05c8ff8f2e844dfff29c14a75a40ada1
  • Loading branch information
Luboš Luňák committed Feb 1, 2022
1 parent 57f6c7f commit 8e4624b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sc/source/ui/miscdlgs/dataproviderdlg.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ SCCOL ScDataTransformationBaseControl::getLastCol(const ScDocument& rDoc)
{
for (SCCOL nCol = 1; nCol <= rDoc.MaxCol(); ++nCol)
{
CellType eType;
rDoc.GetCellType(nCol, 0, 0, eType);
if (eType == CELLTYPE_NONE)
if (rDoc.GetCellType(nCol, 0, 0) == CELLTYPE_NONE)
{
return static_cast<SCCOL>(nCol - 1 );
}
Expand Down

0 comments on commit 8e4624b

Please sign in to comment.