summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-16 18:11:15 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-18 15:30:09 +0200
commit3f4012152db815f897fbb39a618224aab53486d3 (patch)
tree0ef09204c2f90d267c148ef83a9319e2fa2b0810 /fpicker
parent06a49d7ff98f058788fe4e2263daff51a66d234c (diff)
loplugin:passstuffbyref
Change-Id: Ib4c63e4942acec1b02bac1a5bc387e1931eaae12
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/aqua/FilterHelper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/aqua/FilterHelper.hxx b/fpicker/source/aqua/FilterHelper.hxx
index 0d465b60266e..67c5d5df9023 100644
--- a/fpicker/source/aqua/FilterHelper.hxx
+++ b/fpicker/source/aqua/FilterHelper.hxx
@@ -55,8 +55,8 @@ public:
FilterEntry( const OUString& _rTitle, const UnoFilterList& _rSubFilters );
- OUString getTitle() const { return m_sTitle; }
- OUStringList getFilterSuffixList() const { return m_sFilterSuffixList; }
+ OUString const & getTitle() const { return m_sTitle; }
+ OUStringList const & getFilterSuffixList() const { return m_sFilterSuffixList; }
/// determines if the filter has sub filter (i.e., the filter is a filter group in real)
bool hasSubFilters( ) const;