summaryrefslogtreecommitdiff
path: root/connectivity/source
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2022-06-06 14:34:34 +0200
committerAndras Timar <andras.timar@collabora.com>2022-06-09 11:02:07 +0200
commitcd40969931beed2e568366eb55f73a3471974d42 (patch)
treec66e6c51e74ec7c2be1a25af84224c05a5696da8 /connectivity/source
parent9c9a9fed4558ca4b11d2d3615c94eedecee2efaa (diff)
Resolves: tdf#148163 Preserve names of bad cell reference input again
A regression of commit e247262327d04ad9933f4af354050f4420c6e303 CommitDate: Tue Jul 30 23:49:55 2013 -0400 More on avoiding direct access to data members. that changed, for example, invalid sheet references - aRef.nTab = MAXTAB+3; + aRef.SetTabDeleted(true); The then following commit 8a19af57bbcc57a02a7d87c6408d1e3212a6deba CommitDate: Tue Jul 30 23:50:03 2013 -0400 Now nobody accesses reference members directly. Make them private. changed ScSingleRefData::Valid() - return nCol >= 0 && nCol <= MAXCOL && - nRow >= 0 && nRow <= MAXROW && - nTab >= 0 && nTab <= MAXTAB; + return ColValid() && RowValid() && TabValid(); without taking the deleted flags into account, where previous to commit e247262327d04ad9933f4af354050f4420c6e303 nTab > MAXTAB fulfilled the condition of not valid. This makes it necessary to adjust the TestFormula::testFuncRangeOp() test case that relied on the broken behaviour. Change-Id: I42e769ca0d56a2eb786bb6f65917f0c15d082763 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135453 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins (cherry picked from commit 104596d005b32bd2bba15554e8c9ae740327aa46) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135379 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'connectivity/source')
0 files changed, 0 insertions, 0 deletions