summaryrefslogtreecommitdiff
path: root/include/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-05-27 10:25:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-05-27 12:55:23 +0200
commitd203d3aeb29a46bd85eb320d4ebcd7325ec4a1ab (patch)
treeab5359c7c3361dbaa2fd474cb4c5a7e313c5f7e0 /include/sax
parentba8502545fb5519a5cd13a673ee72d82f0fd8852 (diff)
clang-tidy modernize-pass-by-value in sax
Change-Id: I0357c7e3f5ae1d0a560057ac756b1118917a5e11 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135038 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/fastattribs.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx
index 4ac958d882fc..57619b922518 100644
--- a/include/sax/fastattribs.hxx
+++ b/include/sax/fastattribs.hxx
@@ -43,8 +43,8 @@ struct UnknownAttribute
OString maName;
OString maValue;
- UnknownAttribute( const OUString& rNamespaceURL, const OString& rName, const OString& value );
- UnknownAttribute( const OString& rName, const OString& value );
+ UnknownAttribute( OUString sNamespaceURL, OString aName, OString value );
+ UnknownAttribute( OString sName, OString value );
void FillAttribute( css::xml::Attribute* pAttrib ) const;
};