summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-01-24 09:08:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-11 13:25:31 +0100
commit0d1253c2328106a443d16b6c8e96347de33e2ace (patch)
treee26e7ca9f9b91f50573f446b8a93515f4c4302eb /sc/source/ui/unoobj
parent2dd7aba7564a222c2acbac22975a76a6ab33c41f (diff)
new loplugin writeonlyvars
largely based on the relevant portion of the unusedfields loplugin, but adapted for local vars Change-Id: Ic522a941573940e8f75c88f90ba5f37508ca49b1 Reviewed-on: https://gerrit.libreoffice.org/66835 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r--sc/source/ui/unoobj/PivotTableDataProvider.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/sc/source/ui/unoobj/PivotTableDataProvider.cxx b/sc/source/ui/unoobj/PivotTableDataProvider.cxx
index b8e8eb73ce7d..c72ab042b4cf 100644
--- a/sc/source/ui/unoobj/PivotTableDataProvider.cxx
+++ b/sc/source/ui/unoobj/PivotTableDataProvider.cxx
@@ -197,13 +197,8 @@ uno::Reference<chart2::data::XDataSource> SAL_CALL
if (!m_pDocument)
throw uno::RuntimeException();
- bool bLabel = true;
- bool bCategories = false;
bool bOrientCol = true;
OUString aRangeRepresentation;
- OUString sPivotTable;
- uno::Sequence<sal_Int32> aSequenceMapping;
- bool bTimeBased = false;
for (beans::PropertyValue const & rProperty : aArguments)
{
@@ -218,18 +213,8 @@ uno::Reference<chart2::data::XDataSource> SAL_CALL
}
bOrientCol = (eSource == chart::ChartDataRowSource_COLUMNS);
}
- else if (rProperty.Name == "FirstCellAsLabel")
- rProperty.Value >>= bLabel;
- else if (rProperty.Name == "HasCategories")
- rProperty.Value >>= bCategories;
else if (rProperty.Name == "CellRangeRepresentation")
rProperty.Value >>= aRangeRepresentation;
- else if (rProperty.Name == "SequenceMapping")
- rProperty.Value >>= aSequenceMapping;
- else if (rProperty.Name == "TimeBased")
- rProperty.Value >>= bTimeBased;
- else if (rProperty.Name == "ConnectedPivotTable")
- rProperty.Value >>= sPivotTable;
}
uno::Reference<chart2::data::XDataSource> xResult;