summaryrefslogtreecommitdiff
path: root/sax/source/tools/fshelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/tools/fshelper.cxx')
-rw-r--r--sax/source/tools/fshelper.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sax/source/tools/fshelper.cxx b/sax/source/tools/fshelper.cxx
index 16b3acb3e021..c9df02140c5e 100644
--- a/sax/source/tools/fshelper.cxx
+++ b/sax/source/tools/fshelper.cxx
@@ -73,7 +73,7 @@ void FastSerializerHelper::endElement(const char* elementName)
{
mpSerializer->endUnknownElement(::rtl::OUString(), ::rtl::OUString::createFromAscii(elementName));
}
-
+
void FastSerializerHelper::startElementV(sal_Int32 elementTokenId, va_list args)
{
FastAttributeList* pAttrList = new FastAttributeList( mxTokenHandler );
@@ -102,8 +102,8 @@ void FastSerializerHelper::singleElementV(sal_Int32 elementTokenId, va_list args
if (nName == FSEND)
break;
const char* pValue = va_arg(args, const char*);
- if (pValue)
- pAttrList->add(nName, pValue);
+ if (pValue)
+ pAttrList->add(nName, pValue);
}
const com::sun::star::uno::Reference<com::sun::star::xml::sax::XFastAttributeList> xAttrList(pAttrList);
@@ -123,7 +123,7 @@ void FastSerializerHelper::startElementV(sal_Int32 elementTokenId, XFastAttribut
void FastSerializerHelper::singleElement(const char* elementName, XFastAttributeListRef xAttrList)
{
- mpSerializer->singleUnknownElement(::rtl::OUString(), ::rtl::OUString::createFromAscii(elementName), xAttrList);
+ mpSerializer->singleUnknownElement(::rtl::OUString(), ::rtl::OUString::createFromAscii(elementName), xAttrList);
}
void FastSerializerHelper::singleElementV(sal_Int32 elementTokenId, XFastAttributeListRef xAttrList)
@@ -197,7 +197,7 @@ FastAttributeList * FastSerializerHelper::createAttrList()
{
return new FastAttributeList( mxTokenHandler );
}
-
+
}