diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-24 12:21:41 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-24 12:32:11 +0200 |
commit | aee01f809e214090b320b31bdce98dff77208a3b (patch) | |
tree | 195825a4f2d5f23bd79b658d28403e662beb928b /xmloff | |
parent | d81f84a0a40f99316d32b2877ea8b92da3dfc74c (diff) |
x error bars are also defined in ODF 1.2
I suppose they were deactivated in ODF 1.2 because of the invalid ODF
files produced by the old code
Change-Id: I42624a3e0f57405b38110bef86a0aa533f491c6c
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 0b44488bd002..120070202c80 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -3026,7 +3026,7 @@ void SchXMLExportHelper_Impl::exportErrorBar( const Reference<beans::XPropertySe const SvtSaveOptions::ODFDefaultVersion nCurrentVersion( SvtSaveOptions().GetODFDefaultVersion() ); /// Dont export X ErrorBars for older ODF versions. - if ( !bYError && nCurrentVersion <= SvtSaveOptions::ODFVER_012 ) + if ( !bYError && nCurrentVersion < SvtSaveOptions::ODFVER_012 ) return; if (xSeriesProp.is()) |