diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-28 15:13:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-29 07:17:37 +0100 |
commit | 21de55596c0fdc2be736c6d0369bd9d3783020be (patch) | |
tree | 07d0f0cd54690e54405fe574c572cb2be74a3336 /fpicker | |
parent | da9fb5d6d9ebf9363981c370ce937d8848989fcb (diff) |
remove unnecessary "if (!empty()" checks before loops
found with
git grep -n -A4 'if.*!.*empty' | grep -B3 -P
'(\bfor)|(\bwhile)|(\bdo)'
Change-Id: I582235b7cf977a0f9fb4099eb306fdb4a07b5334
Reviewed-on: https://gerrit.libreoffice.org/64169
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx index 6f22961fdf8d..0651b70eb1c0 100644 --- a/fpicker/source/office/OfficeFilePicker.cxx +++ b/fpicker/source/office/OfficeFilePicker.cxx @@ -189,7 +189,7 @@ void SvtFilePicker::prepareExecute() } - if ( m_pFilterList && !m_pFilterList->empty() ) + if ( m_pFilterList ) { for (auto & elem : *m_pFilterList) { @@ -652,7 +652,7 @@ Any SAL_CALL SvtFilePicker::getValue( sal_Int16 nElementID, sal_Int16 nControlAc ::svt::OControlAccess aAccess( getDialog(), getDialog()->GetView() ); aAny = aAccess.getValue( nElementID, nControlAction ); } - else if ( m_pElemList && !m_pElemList->empty() ) + else if ( m_pElemList ) { for (auto const& elem : *m_pElemList) { @@ -718,7 +718,7 @@ OUString SAL_CALL SvtFilePicker::getLabel( sal_Int16 nLabelID ) ::svt::OControlAccess aAccess( getDialog(), getDialog()->GetView() ); aLabel = aAccess.getLabel( nLabelID ); } - else if ( m_pElemList && !m_pElemList->empty() ) + else if ( m_pElemList ) { for (auto const& elem : *m_pElemList) { |