summaryrefslogtreecommitdiffstats
path: root/include/sax
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-07 15:58:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-07 18:59:55 +0200
commit2eb5a59a220d4cd2167fb59349ab13ca7663b78d (patch)
treef99f978a80138722e971b6966dc5882f45294c4c /include/sax
parentloplugin:passstuffbyref also for {css::uno,rtl}::Reference (diff)
downloadcore-2eb5a59a220d4cd2167fb59349ab13ca7663b78d.tar.gz
core-2eb5a59a220d4cd2167fb59349ab13ca7663b78d.zip
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: If18f0a749c1e474c302fd797c2a2abc2b33a0730
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/fshelper.hxx4
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);