summaryrefslogtreecommitdiff
path: root/xmloff/source/text/txtftne.cxx
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-09-24 12:40:55 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-09-24 12:40:55 +0000
commit72ac0948794148caed009f8f2749f620d93a9a66 (patch)
tree39ecfe11775e66fa524a13b56a28a2fe809ed2c6 /xmloff/source/text/txtftne.cxx
parent9045c52a7fe9512754fc51404349d59866d7b436 (diff)
#91636# use new SvXMLExport methods for improved error handling
Diffstat (limited to 'xmloff/source/text/txtftne.cxx')
-rw-r--r--xmloff/source/text/txtftne.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/text/txtftne.cxx b/xmloff/source/text/txtftne.cxx
index 20bd61632eb9..ad8904be92f8 100644
--- a/xmloff/source/text/txtftne.cxx
+++ b/xmloff/source/text/txtftne.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtftne.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: dvo $ $Date: 2001-06-29 21:07:22 $
+ * last change: $Author: dvo $ $Date: 2001-09-24 13:40:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -240,7 +240,7 @@ void XMLTextParagraphExport::exportTextFootnoteHelper(
(bIsEndnote ? XML_ENDNOTE_CITATION :
XML_FOOTNOTE_CITATION),
sal_False, sal_False);
- GetExport().GetDocHandler()->characters(sText);
+ GetExport().Characters(sText);
}
{
@@ -398,7 +398,7 @@ void XMLTextParagraphExport::exportTextFootnoteConfigurationHelper(
SvXMLElementExport aElem(GetExport(), XML_NAMESPACE_TEXT,
XML_FOOTNOTE_CONTINUATION_NOTICE_FORWARD,
sal_True, sal_False);
- GetExport().GetDocHandler()->characters(sTmp);
+ GetExport().Characters(sTmp);
}
// begin notice / ergo sum
@@ -410,7 +410,7 @@ void XMLTextParagraphExport::exportTextFootnoteConfigurationHelper(
SvXMLElementExport aElem(GetExport(), XML_NAMESPACE_TEXT,
XML_FOOTNOTE_CONTINUATION_NOTICE_BACKWARD,
sal_True, sal_False);
- GetExport().GetDocHandler()->characters(sTmp);
+ GetExport().Characters(sTmp);
}
}
}