summaryrefslogtreecommitdiff
path: root/sw/source/filter/html
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2001-11-16 09:15:23 +0000
committerMichael Brauer <mib@openoffice.org>2001-11-16 09:15:23 +0000
commit808fa19c0d6ecb42db789367462e96d168c1642f (patch)
tree8a146e75b3b80844bd6dd72926b32da2bb43200d /sw/source/filter/html
parent99ea22fef3759a50628de394e73365b9e71d8f42 (diff)
#94869#: Footnote symbol export were broken
Diffstat (limited to 'sw/source/filter/html')
-rw-r--r--sw/source/filter/html/htmlftn.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/html/htmlftn.cxx b/sw/source/filter/html/htmlftn.cxx
index 531c9830b132..97ed7c2aec45 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: htmlftn.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: mib $ $Date: 2001-10-09 14:57:36 $
+ * last change: $Author: mib $ $Date: 2001-11-16 10:15:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -496,9 +496,9 @@ String SwHTMLWriter::GetFootEndNoteSym( const SwFmtFtn& rFmtFtn )
String sRet;
if( pInfo )
sRet = pInfo->GetPrefix();
- sRet = rFmtFtn.GetViewNumStr( *pDoc );
+ sRet += rFmtFtn.GetViewNumStr( *pDoc );
if( pInfo )
- sRet = pInfo->GetSuffix();
+ sRet += pInfo->GetSuffix();
return sRet;
}