summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TagLogger.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-12 10:34:46 +0200
committerNoel Grandin <noel@peralex.com>2016-04-12 11:25:18 +0200
commitc473472fc03dc71f237caeb36395ce155121288a (patch)
treedece960982bf20ffc6ae2688a237b4b933a9292b /writerfilter/source/dmapper/TagLogger.hxx
parent8dcb7cf2a55bd0bf6ebbd89e2b91a078e6623996 (diff)
clang-tidy performance-unnecessary-value-param in writerfilter
Change-Id: I1f61be80ac1ebe42668580b09a261e7e3af1a403
Diffstat (limited to 'writerfilter/source/dmapper/TagLogger.hxx')
-rw-r--r--writerfilter/source/dmapper/TagLogger.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/TagLogger.hxx b/writerfilter/source/dmapper/TagLogger.hxx
index 5bd212807a94..b03da6cfcfe5 100644
--- a/writerfilter/source/dmapper/TagLogger.hxx
+++ b/writerfilter/source/dmapper/TagLogger.hxx
@@ -50,14 +50,14 @@ namespace writerfilter
void endDocument();
void element(const std::string & name);
- void unoPropertySet(css::uno::Reference<css::beans::XPropertySet> rPropSet);
+ void unoPropertySet(const css::uno::Reference<css::beans::XPropertySet>& rPropSet);
void startElement(const std::string & name);
#endif
void attribute(const std::string & name, const std::string & value);
#ifdef DEBUG_WRITERFILTER
void attribute(const std::string & name, const OUString & value);
void attribute(const std::string & name, sal_uInt32 value);
- void attribute(const std::string & name, const css::uno::Any aAny);
+ void attribute(const std::string & name, const css::uno::Any& aAny);
void chars(const std::string & chars);
void chars(const OUString & chars);
void endElement();