summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwsh3.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-08-03 09:15:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-08-03 09:15:32 +0100
commit6968be5e274dc7948d474f0891bbcac9bdc68cc3 (patch)
tree5f5dafa7e2574dcae536bb7cfdc3dc6c2e532be4 /sc/source/ui/view/tabvwsh3.cxx
parent89df751d4729c18c74b39ab4a1a5fddee878a16d (diff)
unused slot argument
Change-Id: Ifdc94afa1af8b573ad9652b7f62ca9beee5df340
Diffstat (limited to 'sc/source/ui/view/tabvwsh3.cxx')
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index fd8246ec6e97..67aaaf5c8d30 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -69,7 +69,7 @@
#include <memory>
-static ScRefFlags lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, ScDocument* pDoc, sal_uInt16 /* nSlot */)
+static ScRefFlags lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, ScDocument* pDoc)
{
// start with the address convention set in the document
formula::FormulaGrammar::AddressConvention eConv = pDoc->GetAddressConvention();
@@ -91,7 +91,7 @@ static ScRefFlags lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, Sc
return rScRange.Parse(aAddress, pDoc, formula::FormulaGrammar::CONV_XL_R1C1);
}
-static ScRefFlags lcl_ParseAddress(ScAddress& rScAddress, const OUString& aAddress, ScDocument* pDoc, sal_uInt16 /* nSlot */)
+static ScRefFlags lcl_ParseAddress(ScAddress& rScAddress, const OUString& aAddress, ScDocument* pDoc)
{
// start with the address convention set in the document
formula::FormulaGrammar::AddressConvention eConv = pDoc->GetAddressConvention();
@@ -278,7 +278,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
ScMarkData& rMark = rViewData.GetMarkData();
ScRange aScRange;
ScAddress aScAddress;
- ScRefFlags nResult = lcl_ParseRange(aScRange, aAddress, pDoc, nSlot);
+ ScRefFlags nResult = lcl_ParseRange(aScRange, aAddress, pDoc);
SCTAB nTab = rViewData.GetTabNo();
bool bMark = true;
@@ -297,7 +297,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
}
}
// Is this a cell ?
- else if ( (nResult = lcl_ParseAddress(aScAddress, aAddress, pDoc, nSlot)) & ScRefFlags::VALID )
+ else if ( (nResult = lcl_ParseAddress(aScAddress, aAddress, pDoc)) & ScRefFlags::VALID )
{
if ( nResult & ScRefFlags::TAB_3D )
{