summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-02-07 18:37:34 +0000
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-02-09 05:33:59 +0100
commit033ebc5a5d76bff179ca778412e6923b605217d5 (patch)
treec7070dac749d89abfb3640d3472045fd4773ae8f /chart2
parent8e12e3300592438b06b5649deaf84574de5066ba (diff)
Fix typo
Change-Id: I72fafb21ac51de7537622b5265af266073cdb293 Reviewed-on: https://gerrit.libreoffice.org/67576 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/charttypes/PieChart.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx
index daf53dcac8b5..662a9a842db7 100644
--- a/chart2/source/view/charttypes/PieChart.cxx
+++ b/chart2/source/view/charttypes/PieChart.cxx
@@ -625,7 +625,7 @@ void PieChart::createShapes()
double fLogicYValue = fabs(pSeries->getYValue( nPointIndex ));
if( ::rtl::math::isNan(fLogicYValue) )
continue;
- if(fLogicYValue==0.0)//@todo: continue also if the resolution to small
+ if(fLogicYValue==0.0)//@todo: continue also if the resolution is too small
continue;
double fLogicYPos = fLogicYForNextPoint;
fLogicYForNextPoint += fLogicYValue;