summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2002-05-06 09:23:13 +0000
committerBjörn Milcke <bm@openoffice.org>2002-05-06 09:23:13 +0000
commit93884d152166ecd2580a981b06c873ddfb810040 (patch)
tree61e0de7e749850584ff848b0cc6efacdc69667b7
parentd2ef251902ed838c1d2570dcd1b6b5eb33b8942f (diff)
#96720# empty cells are not valid. Changed to a cell containing an empty text:p element
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index dfd1ef0005bb..666f6b0caddf 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: SchXMLExport.cxx,v $
*
- * $Revision: 1.65 $
+ * $Revision: 1.66 $
*
- * last change: $Author: bm $ $Date: 2002-05-06 07:24:33 $
+ * last change: $Author: bm $ $Date: 2002-05-06 10:23:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -873,6 +873,7 @@ void SchXMLExportHelper::exportTable( uno::Reference< chart::XChartDataArray >&
// write one empty cell (the cell A1 is never used)
{
SvXMLElementExport aEmptyCell( mrExport, XML_NAMESPACE_TABLE, XML_TABLE_CELL, sal_True, sal_True );
+ SvXMLElementExport aEmptyParagraph( mrExport, XML_NAMESPACE_TEXT, XML_P, sal_True, sal_True );
}
for( nSeries = 0; nSeries < nSeriesLablesLength; nSeries++ )
{