summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLStringBufferImportContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLStringBufferImportContext.cxx')
-rw-r--r--xmloff/source/text/XMLStringBufferImportContext.cxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/xmloff/source/text/XMLStringBufferImportContext.cxx b/xmloff/source/text/XMLStringBufferImportContext.cxx
index 09d69d6be7b3..d7aaeadea52f 100644
--- a/xmloff/source/text/XMLStringBufferImportContext.cxx
+++ b/xmloff/source/text/XMLStringBufferImportContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLStringBufferImportContext.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: dvo $ $Date: 2001-01-24 16:49:52 $
+ * last change: $Author: dvo $ $Date: 2001-06-29 21:07:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,18 +63,22 @@
#include "XMLStringBufferImportContext.hxx"
#endif
-#ifndef _XMLOFF_XMLKYWD_HXX
-#include "xmlkywd.hxx"
+#ifndef _XMLOFF_XMLTOKEN_HXX
+#include "xmltoken.hxx"
#endif
#ifndef _XMLOFF_XMLNMSPE_HXX
#include "xmlnmspe.hxx"
#endif
+
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
using ::com::sun::star::uno::Reference;
using ::com::sun::star::xml::sax::XAttributeList;
+using ::xmloff::token::IsXMLToken;
+using ::xmloff::token::XML_P;
+
TYPEINIT1(XMLStringBufferImportContext, SvXMLImportContext);
@@ -111,7 +115,7 @@ void XMLStringBufferImportContext::EndElement()
{
// add return for paragraph elements
if ( (XML_NAMESPACE_TEXT == GetPrefix()) &&
- (GetLocalName().equalsAsciiL(sXML_p, sizeof(sXML_p)-1)) )
+ (IsXMLToken(GetLocalName(), XML_P)) )
{
rTextBuffer.append(sal_Unicode(0x0a));
}