diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2013-11-20 12:11:44 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2013-11-20 12:12:50 +0000 |
commit | 9491ca3f64bd44a6a8e63f7d2eae02164f792258 (patch) | |
tree | 5ed4973014c2fe04d5e67dd792ee2229c51928fa /offapi/com/sun/star/xml | |
parent | 55716b1ed969073f273c00baedb56d8f5de93761 (diff) |
fastparser: avoid excessive alloc/frees for int / bool / double parsing
Change-Id: I596bbc723558f04588d9e767d64732164524e57a
Diffstat (limited to 'offapi/com/sun/star/xml')
-rw-r--r-- | offapi/com/sun/star/xml/sax/XFastAttributeList.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/xml/sax/XFastAttributeList.idl b/offapi/com/sun/star/xml/sax/XFastAttributeList.idl index 509bcf823061..840fc920b1b0 100644 --- a/offapi/com/sun/star/xml/sax/XFastAttributeList.idl +++ b/offapi/com/sun/star/xml/sax/XFastAttributeList.idl @@ -56,7 +56,7 @@ interface XFastAttributeList: com::sun::star::uno::XInterface */ boolean hasAttribute( [in] long Token ); - /** retrieves the token of an attributes value.<br> + /** retrieves the token of an attribute value.<br> @param Token contains the integer token from the XFastTokenHandler @@ -78,7 +78,7 @@ interface XFastAttributeList: com::sun::star::uno::XInterface long getValueToken( [in] long Token ) raises( SAXException ); - /**retrieves the token of an attributes value.<br> + /**retrieves the token of an attribute value.<br> @param Token contains the integer token from the XFastTokenHandler @@ -101,7 +101,7 @@ interface XFastAttributeList: com::sun::star::uno::XInterface */ long getOptionalValueToken( [in] long Token, [in] long Default ); - /** retrieves the value of an attributes.<br> + /** retrieves the value of an attribute.<br> @param Token contains the integer token from the XFastTokenHandler @@ -123,7 +123,7 @@ interface XFastAttributeList: com::sun::star::uno::XInterface string getValue( [in] long Token ) raises( SAXException ); - /** retrieves the value of an attributes.<br> + /** retrieves the value of an attribute.<br> @param Token contains the integer token from the XFastTokenHandler |