summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/formulabuffer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-26 14:15:47 +0200
committerNoel Grandin <noel@peralex.com>2015-11-30 10:34:38 +0200
commitd2df03574023b379ac09b1f71cae9e3ba3ac53e2 (patch)
treeca17f45377b7b506375b510f1d1733495ea9b170 /sc/source/filter/oox/formulabuffer.cxx
parentffddd4d122433329b454f676f21a2b1ce590a1a7 (diff)
loplugin:unusedfields
Change-Id: Ife94d488ead512abc6d137a0df74298bac67185d
Diffstat (limited to 'sc/source/filter/oox/formulabuffer.cxx')
-rw-r--r--sc/source/filter/oox/formulabuffer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/oox/formulabuffer.cxx b/sc/source/filter/oox/formulabuffer.cxx
index ef6172f46a9e..4e82ea667769 100644
--- a/sc/source/filter/oox/formulabuffer.cxx
+++ b/sc/source/filter/oox/formulabuffer.cxx
@@ -340,9 +340,9 @@ protected:
}
FormulaBuffer::SharedFormulaEntry::SharedFormulaEntry(
- const table::CellAddress& rAddr, const table::CellRangeAddress& rRange,
+ const table::CellAddress& rAddr,
const OUString& rTokenStr, sal_Int32 nSharedId ) :
- maAddress(rAddr), maRange(rRange), maTokenStr(rTokenStr), mnSharedId(nSharedId) {}
+ maAddress(rAddr), maTokenStr(rTokenStr), mnSharedId(nSharedId) {}
FormulaBuffer::SharedFormulaDesc::SharedFormulaDesc(
const css::table::CellAddress& rAddr, sal_Int32 nSharedId,
@@ -457,12 +457,12 @@ FormulaBuffer::SheetItem FormulaBuffer::getSheetItem( SCTAB nTab )
}
void FormulaBuffer::createSharedFormulaMapEntry(
- const table::CellAddress& rAddress, const table::CellRangeAddress& rRange,
+ const table::CellAddress& rAddress,
sal_Int32 nSharedId, const OUString& rTokens )
{
assert( rAddress.Sheet >= 0 && (size_t)rAddress.Sheet < maSharedFormulas.size() );
std::vector<SharedFormulaEntry>& rSharedFormulas = maSharedFormulas[ rAddress.Sheet ];
- SharedFormulaEntry aEntry(rAddress, rRange, rTokens, nSharedId);
+ SharedFormulaEntry aEntry(rAddress, rTokens, nSharedId);
rSharedFormulas.push_back( aEntry );
}