diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-07 15:58:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-07 18:59:55 +0200 |
commit | 2eb5a59a220d4cd2167fb59349ab13ca7663b78d (patch) | |
tree | f99f978a80138722e971b6966dc5882f45294c4c /include/sax | |
parent | 646aabc06c4bd10b2dbf9ac83ccb5c7ea1cc7283 (diff) |
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: If18f0a749c1e474c302fd797c2a2abc2b33a0730
Diffstat (limited to 'include/sax')
-rw-r--r-- | include/sax/fshelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx index 4c79a367eb80..badbc2928a89 100644 --- a/include/sax/fshelper.hxx +++ b/include/sax/fshelper.hxx @@ -115,11 +115,11 @@ public: { endElement( FSNS( namespaceTokenId, elementTokenId ) ); } void singleElement(sal_Int32 elementTokenId, const XFastAttributeListRef& xAttrList); - inline void singleElementNS(sal_Int32 namespaceTokenId, sal_Int32 elementTokenId, XFastAttributeListRef xAttrList) + inline void singleElementNS(sal_Int32 namespaceTokenId, sal_Int32 elementTokenId, XFastAttributeListRef const & xAttrList) { singleElement(FSNS( namespaceTokenId, elementTokenId), xAttrList); } void startElement(sal_Int32 elementTokenId, const XFastAttributeListRef& xAttrList); - inline void startElementNS(sal_Int32 namespaceTokenId, sal_Int32 elementTokenId, XFastAttributeListRef xAttrList) + inline void startElementNS(sal_Int32 namespaceTokenId, sal_Int32 elementTokenId, XFastAttributeListRef const & xAttrList) { startElement( FSNS( namespaceTokenId, elementTokenId ), xAttrList ); } FastSerializerHelper* write(const char* value); |