diff options
author | sb <sb@openoffice.org> | 2009-11-10 10:30:50 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2009-11-10 10:30:50 +0100 |
commit | efa6cd05d30bc5c660c289d9252e07c619eefa6b (patch) | |
tree | e1a9e4872448be662036c31780353414aa57e837 /configmgr/source/xmldata.hxx | |
parent | 4f61c8f406d95f895bb4e74c8538e3129c017805 (diff) |
sb111: #i101955# the span returned by XmlReader::getAttributeValue is only valid until the next call to nextItem or getAttributeValue
Diffstat (limited to 'configmgr/source/xmldata.hxx')
-rw-r--r-- | configmgr/source/xmldata.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configmgr/source/xmldata.hxx b/configmgr/source/xmldata.hxx index 862a4e0de194..8d0e7059a5ca 100644 --- a/configmgr/source/xmldata.hxx +++ b/configmgr/source/xmldata.hxx @@ -47,12 +47,11 @@ rtl::OUString convertFromUtf8(Span const & text); Type parseType(XmlReader const & reader, Span const & text); -bool parseBoolean(Span const & text, bool deflt); +bool parseBoolean(Span const & text); rtl::OUString parseTemplateReference( - Span const & component, Span const & nodeType, - rtl::OUString const & componentName, - rtl::OUString const * defaultTemplateName); + rtl::OUString const & component, bool hasNodeType, + rtl::OUString const & nodeType, rtl::OUString const * defaultTemplateName); } |