diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-14 09:30:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-14 13:34:29 +0100 |
commit | 9c90c5e4740763d116d1354d1e4315d338a92140 (patch) | |
tree | cad98083f5eba4ca09dec0e24bb59800979c9992 /svx/source/form | |
parent | c0ac7ae73480cd2b01f24e88c01bee507e8638f9 (diff) |
loplugin:expandablemethods
Change-Id: Ia8192e03feda9e8ae70e29d8dc98d995f015f9ce
Reviewed-on: https://gerrit.libreoffice.org/85135
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/fmsrcimp.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/svx/source/form/fmsrcimp.cxx b/svx/source/form/fmsrcimp.cxx index fb01b66e9524..379649a65f6e 100644 --- a/svx/source/form/fmsrcimp.cxx +++ b/svx/source/form/fmsrcimp.cxx @@ -605,15 +605,9 @@ bool FmSearchEngine::GetCaseSensitive() const } -void FmSearchEngine::clearControlTexts() -{ - m_aControlTexts.clear(); -} - - void FmSearchEngine::fillControlTexts(const InterfaceArray& arrFields) { - clearControlTexts(); + m_aControlTexts.clear(); Reference< XInterface > xCurrent; for (const auto & rField : arrFields) { |