summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-02-16 11:24:15 +0000
committerOliver Bolte <obo@openoffice.org>2004-02-16 11:24:15 +0000
commit519ab6fe27bcd17c0dad7dd348a970cd34a2cee3 (patch)
tree3a284752a98a6843187c0fb6ed500aa85c007b23 /sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx
parent4375eed13e08c8b16b252ad52a611b3b3bf69425 (diff)
INTEGRATION: CWS sab003 (1.20.180); FILE MERGED
2003/07/03 10:02:07 sab 1.20.180.1: #109117#; set new and old value in change tracking import
Diffstat (limited to 'sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx')
-rw-r--r--sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx b/sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx
index 25b256e55eee..76e937fd1ea1 100644
--- a/sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx
+++ b/sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLChangeTrackingExportHelper.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: sab $ $Date: 2001-09-13 15:15:14 $
+ * last change: $Author: obo $ $Date: 2004-02-16 12:24:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -329,7 +329,9 @@ void ScChangeTrackingExportHelper::SetValueAttributes(const double& fValue, cons
if (rExport.GetDocument() && rExport.GetDocument()->GetFormatTable()->IsNumberFormat(sValue, nIndex, fTempValue))
{
sal_uInt16 nType = rExport.GetDocument()->GetFormatTable()->GetType(nIndex);
- switch(nType & NUMBERFORMAT_DEFINED)
+ if ((nType & NUMBERFORMAT_DEFINED) == NUMBERFORMAT_DEFINED)
+ nType -= NUMBERFORMAT_DEFINED;
+ switch(nType)
{
case NUMBERFORMAT_DATE:
{
@@ -374,11 +376,11 @@ void ScChangeTrackingExportHelper::WriteValueCell(const ScBaseCell* pCell, const
{
SetValueAttributes(pValueCell->GetValue(), sValue);
SvXMLElementExport aElemC(rExport, XML_NAMESPACE_TABLE, XML_CHANGE_TRACK_TABLE_CELL, sal_True, sal_True);
- /*if (sText.getLength())
+/* if (sValue.Len())
{
SvXMLElementExport aElemC(rExport, XML_NAMESPACE_TEXT, XML_P, sal_True, sal_False);
sal_Bool bPrevCharWasSpace(sal_True);
- rExport.GetTextParagraphExport()->exportText(sText, bPrevCharWasSpace);
+ rExport.GetTextParagraphExport()->exportText(sValue, bPrevCharWasSpace);
}*/
}
}