Kaydet (Commit) 4091b4fb authored tarafından Eike Rathke's avatar Eike Rathke

entire rows/cols have absolute col/row anchors, tdf#44419 follow-up

Change-Id: I2ae8c1c81734efd7c80558ba5337253985e8e8b7
üst ce07affe
......@@ -1491,11 +1491,15 @@ static sal_uInt16 lcl_ScRange_Parse_OOo( ScRange& rRange,
{
rRange.aStart.SetRow(0);
rRange.aEnd.SetRow(MAXROW);
nRes1 |= SCA_ROW_ABSOLUTE;
nRes2 |= SCA_ROW_ABSOLUTE;
}
else
{
rRange.aStart.SetCol(0);
rRange.aEnd.SetCol(MAXCOL);
nRes1 |= SCA_COL_ABSOLUTE;
nRes2 |= SCA_COL_ABSOLUTE;
}
}
if (nRes1 && nRes2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment