diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-08-11 12:40:35 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-08-11 12:40:35 +0200 |
commit | 4af24fb1a3dd359be4b97f7682678aa5b8d2ff1a (patch) | |
tree | b7d45a6d158a35d477ecacfe63326d4202047a7f /sc | |
parent | 88840a796efc087e5699d8e8a53587f1cedbe73c (diff) |
Remove unused local var
Change-Id: Icc314cf12cfcf41813ceab7071b6e655909a7c7e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmldpimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/xmldpimp.cxx b/sc/source/filter/xml/xmldpimp.cxx index fc25a0857575..8c44968c9b9c 100644 --- a/sc/source/filter/xml/xmldpimp.cxx +++ b/sc/source/filter/xml/xmldpimp.cxx @@ -329,7 +329,7 @@ void ScXMLDataPilotTableContext::SetButtons() aGeometry.setPageFieldCount(mnPageFieldCount); aGeometry.setDataFieldCount(mnDataFieldCount); - std::vector<const ScDPSaveDimension*> aRowDims, aColDims, aPageDims; + std::vector<const ScDPSaveDimension*> aRowDims, aColDims; pDPSave->GetAllDimensionsByOrientation(sheet::DataPilotFieldOrientation_ROW, aRowDims); pDPSave->GetAllDimensionsByOrientation(sheet::DataPilotFieldOrientation_COLUMN, aColDims); |