From 23e6bac62ef6482c287bb0f55c662ac2047ebb33 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Wed, 17 Oct 2012 13:10:09 +0200 Subject: only use non blank cells in the visible data methods, fdo#54552 Change-Id: I2a0914fbaff3e3f707a9c06f693079aed2b89ba4 (cherry picked from commit 40377a6e26aa61a1c0788cad1c97a10911d38da8) Signed-off-by: David Tardon --- sc/source/core/data/column2.cxx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx index c28249a6d827..03f7b5421ac9 100644 --- a/sc/source/core/data/column2.cxx +++ b/sc/source/core/data/column2.cxx @@ -1131,7 +1131,8 @@ bool ScColumn::IsEmptyVisData() const SCSIZE i; for (i=0; iIsBlank()) + bVisData = true; } return !bVisData; } @@ -1165,8 +1166,11 @@ SCROW ScColumn::GetLastVisDataPos() const for (i=maItems.size(); i>0 && !bFound; ) { --i; - bFound = true; - nRet = maItems[i].nRow; + if(!maItems[i].pCell->IsBlank()) + { + bFound = true; + nRet = maItems[i].nRow; + } } } return nRet; -- cgit v1.2.3