diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-02-05 16:50:34 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-02-05 16:51:43 +0100 |
commit | 3d409c6bdb8d4a445ec5baf1eaa296d50d4afdb9 (patch) | |
tree | c65c119a7d0d9fcb75d6c69436ce0e6c177a5972 /sc | |
parent | 9a6818bd73198e6dba3414579a35db6e87dbeb66 (diff) |
sc: fix -Werror,-Wshadow (Android)
Change-Id: I8e0f4e2042901b8f6bbc6e1358ca8ab5dae446ce
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/formulacell.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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) { } |