diff options
-rw-r--r-- | chart2/source/model/template/XYDataInterpreter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/model/template/XYDataInterpreter.cxx b/chart2/source/model/template/XYDataInterpreter.cxx index 8bf2b03a9aaf..44705c1a2165 100644 --- a/chart2/source/model/template/XYDataInterpreter.cxx +++ b/chart2/source/model/template/XYDataInterpreter.cxx @@ -68,7 +68,7 @@ chart2::InterpretedData SAL_CALL XYDataInterpreter::interpretDataSource( // parse data bool bCategoriesUsed = false; - bool bSetXValues = aData.getLength()>(bCategoriesUsed?2:1); + bool bSetXValues = aData.getLength()>1; for( sal_Int32 nDataIdx= 0; nDataIdx < aData.getLength(); ++nDataIdx ) { try |