[Libreoffice-commits] core.git: sc/source

Tor Lillqvist tml at collabora.com
Fri Feb 14 07:46:45 CET 2014


 sc/source/core/data/dociter.cxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 6124183d7b6742bbf41d61c6bae342180dd2ed8e
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Feb 14 08:40:23 2014 +0200

    WaE: private fields 'mnStartRow' and 'mnEndRow' are not used
    
    Change-Id: I067ad401608552df45275d0cbb73e486e93461ba

diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index de63eb5..f33ff41 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -1465,8 +1465,6 @@ class NonEmptyCellIndexer
     BlockMapType maBlockMap;
 
     const sc::CellStoreType& mrCells;
-    SCROW mnStartRow;
-    SCROW mnEndRow;
 
     size_t mnLowIndex;
     size_t mnHighIndex;
@@ -1485,7 +1483,7 @@ public:
      */
     NonEmptyCellIndexer(
         const sc::CellStoreType& rCells, SCROW nStartRow, SCROW nEndRow, bool bSkipTopStrBlock ) :
-        mrCells(rCells), mnStartRow(nStartRow), mnEndRow(nEndRow), mnLowIndex(0), mnHighIndex(0), mbValid(true)
+        mrCells(rCells), mnLowIndex(0), mnHighIndex(0), mbValid(true)
     {
         if (nEndRow < nStartRow)
         {


More information about the Libreoffice-commits mailing list