summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorobo <obo@openoffice.org>2011-03-16 09:56:18 +0100
committerobo <obo@openoffice.org>2011-03-16 09:56:18 +0100
commitb7d4d897a9fb26df5d4cd63dcba1839f63d412cb (patch)
tree3b8b1b321ba0458f8bdbe9ad44f5645b34f2892b /xmloff
parent65db8558c0c97c00e9577e5a1ac85832cfe8f79c (diff)
parent0e5599015f7db91b6084851d148dc063dff45c50 (diff)
CWS-TOOLING: integrate CWS chart55
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index 4e6991df64..d3fadce2d8 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -1836,7 +1836,7 @@ void SchXMLExportHelper_Impl::exportTable()
for( t2DNumberContainer::const_iterator aRowIt( aData.aDataInRows.begin())
; aRowIt != aData.aDataInRows.end()
- ; aRowIt++, nC++, aRowDescriptionsIter++ )
+ ; ++aRowIt, ++nC )
{
SvXMLElementExport aRow( mrExport, XML_NAMESPACE_TABLE, XML_TABLE_ROW, sal_True, sal_True );
@@ -1874,8 +1874,10 @@ void SchXMLExportHelper_Impl::exportTable()
if( !bHasOwnData && aRowDescriptions_RangeIter != aRowDescriptions_RangeEnd )
{
// remind the original range to allow a correct re-association when copying via clipboard
- SchXMLTools::exportRangeToSomewhere( mrExport, *aRowDescriptions_RangeIter++ );
+ SchXMLTools::exportRangeToSomewhere( mrExport, *aRowDescriptions_RangeIter );
+ ++aRowDescriptions_RangeIter;
}
+ ++aRowDescriptionsIter;
}
}