diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 09:34:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-13 11:05:53 +0200 |
commit | 0dc38bdde056cf33a545d85f9e1211f06d579ff7 (patch) | |
tree | 311cb26b3dbafdee92fe96effecc205a7aee50df /svl/source/inc | |
parent | 3075b062261435d568d0680c3405ca61a7a40f39 (diff) |
sfx2,svl: prefer passing OUString and OString by reference
Change-Id: I9833265f6e635a057cea2c4a945cc73809b1e2ef
Diffstat (limited to 'svl/source/inc')
-rw-r--r-- | svl/source/inc/passwordcontainer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx index b2d00a86b4f5..22f648697421 100644 --- a/svl/source/inc/passwordcontainer.hxx +++ b/svl/source/inc/passwordcontainer.hxx @@ -97,7 +97,7 @@ public: NamePassRecord( const OUString& aName, bool bHasMemoryList, const ::std::vector< OUString >& aMemoryList, - bool bHasPersistentList, const OUString aPersistentList ) + bool bHasPersistentList, const OUString & aPersistentList ) : m_aName( aName ) , m_bHasMemPass( bHasMemoryList ) , m_bHasPersPass( bHasPersistentList ) |