summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2001-03-27 15:21:20 +0000
committerBjörn Milcke <bm@openoffice.org>2001-03-27 15:21:20 +0000
commit5ee0b59e6763b91e3f19de6104b38989d5e447a4 (patch)
treef2f7bc632a89d834c008fe08538f07f1de814b92 /xmloff
parent976e13cd2c75ed5421b77601c1a37323b939ab6a (diff)
#84958# fix for this fix
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index 2f8e83002115..f70bb4d0815f 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: SchXMLExport.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: bm $ $Date: 2001-03-27 13:21:35 $
+ * last change: $Author: bm $ $Date: 2001-03-27 16:21:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1806,7 +1806,7 @@ void SchXMLExportHelper::swapDataArray( com::sun::star::uno::Sequence< com::sun:
uno::Sequence< double >* pArray = aResult.getArray();
for( i = 0; i < nInnerSize; i++ )
{
- pArray->realloc( nOuterSize );
+ pArray[ i ].realloc( nOuterSize );
for( o = 0 ; o < nOuterSize ; o++ )
aResult[ i ][ o ] = rSequence[ o ][ i ];
}