From d33e262a244f351febc9dbe605b05f76cb834eeb Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Sun, 7 May 2017 21:05:48 +0200 Subject: remove unused bool japanese candlesticks has no function since initial commit a41687b62b0a6f2b79e44311ddf74c52e844ee36 New files from xlsx-shared-oox-chart-export-part1.diff bool is unused since last loplugin:unusedparams in oox commit 4cc0b82103e0b1d28a3ada59974aac0e7da18083 Change-Id: I30d51ecdeea851ebe1538e33ed1a0b32e131aa80 Reviewed-on: https://gerrit.libreoffice.org/37351 Tested-by: Jenkins Reviewed-by: Noel Grandin --- oox/source/export/chartexport.cxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 7b786c782fba..5d0ccdcca268 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1841,11 +1841,6 @@ void ChartExport::exportStockChart( const Reference< chart2::XChartType >& xChar FSEND ); bool bPrimaryAxes = true; - bool bJapaneseCandleSticks = false; - Reference< beans::XPropertySet > xCTProp( xChartType, uno::UNO_QUERY ); - if( xCTProp.is()) - xCTProp->getPropertyValue("Japanese") >>= bJapaneseCandleSticks; - Reference< chart2::XDataSeriesContainer > xDSCnt( xChartType, uno::UNO_QUERY ); if(xDSCnt.is()) exportCandleStickSeries( xDSCnt->getDataSeries(), bPrimaryAxes ); -- cgit