diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-14 09:58:40 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-05-14 08:10:22 +0000 |
commit | 248145f99e95cc30bb6231a8e5ea4e294f147040 (patch) | |
tree | c3b5c1e226cc631cde530f2cfb7df2d46f00b8c9 /linguistic | |
parent | 671eb12dee290607ed66f3b325f28e7bd4695cba (diff) |
Find places where uno::Sequence is passed by value.
Implement a clang plugin to find them, and clean up existing code
to pass them by reference.
Change-Id: If642d87407c73346d9c0164b9fc77c5c3c4354b8
Reviewed-on: https://gerrit.libreoffice.org/9351
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/dlistimp.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/linguistic/source/dlistimp.hxx b/linguistic/source/dlistimp.hxx index 8dfeb3f0a2e6..24a8fd915365 100644 --- a/linguistic/source/dlistimp.hxx +++ b/linguistic/source/dlistimp.hxx @@ -83,9 +83,7 @@ class DicList : return aDicList; } - void LaunchEvent(sal_Int16 nEvent, com::sun::star::uno::Sequence< - ::com::sun::star::linguistic2::XDictionary > xDic); - void SearchForDictionaries( DictionaryVec_t &rDicList, + void SearchForDictionaries( DictionaryVec_t &rDicList, const OUString &rDicDir, bool bIsWritePath ); sal_Int32 GetDicPos(const com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XDictionary > &xDic); |