sc/source/core/data/formulacell.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 3d409c6bdb8d4a445ec5baf1eaa296d50d4afdb9
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Tue Feb 5 16:50:34 2019 +0100
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Tue Feb 5 16:51:43 2019 +0100

    sc: fix -Werror,-Wshadow (Android)
    
    Change-Id: I8e0f4e2042901b8f6bbc6e1358ca8ab5dae446ce

diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 94d6ad81da8b..52c0cf5e3f7c 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -4689,16 +4689,16 @@ bool 
ScFormulaCell::InterpretFormulaGroupThreading(sc::FormulaLogger::GroupScope
                      ScDocument* pDocument2,
                      ScInterpreterContext* pContext,
                      const ScAddress& rTopPos,
-                     SCROW nStartOffset,
-                     SCROW nEndOffset) :
+                     SCROW nStartOff,
+                     SCROW nEndOff) :
                 comphelper::ThreadTask(rTag),
                 mnThisThread(nThisThread),
                 mnThreadsTotal(nThreadsTotal),
                 mpDocument(pDocument2),
                 mpContext(pContext),
                 mrTopPos(rTopPos),
-                mnStartOffset(nStartOffset),
-                mnEndOffset(nEndOffset)
+                mnStartOffset(nStartOff),
+                mnEndOffset(nEndOff)
             {
             }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to