diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2019-07-21 19:39:26 +0300 |
---|---|---|
committer | Arkadiy Illarionov <qarkai@gmail.com> | 2019-07-29 18:44:33 +0200 |
commit | 25b200ff79c71c831bc7e6fe8b1ec0b5315e96d6 (patch) | |
tree | b8e7cc15bfe82b677fb1bfc791b3f2f5a50fdc79 /sfx2/source/inet | |
parent | c762e3859973355b31f6676a8e697c5fd78c9970 (diff) |
Simplify Sequence iterations in sfx2
Use range-based loops, STL and comphelper functions
Change-Id: I6a0d18493db7a25e8b41925f2d45cb221b5065a7
Reviewed-on: https://gerrit.libreoffice.org/76074
Tested-by: Jenkins
Reviewed-by: Arkadiy Illarionov <qarkai@gmail.com>
Diffstat (limited to 'sfx2/source/inet')
-rw-r--r-- | sfx2/source/inet/inettbc.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sfx2/source/inet/inettbc.cxx b/sfx2/source/inet/inettbc.cxx index 1afd5df14b5c..68d862eeced6 100644 --- a/sfx2/source/inet/inettbc.cxx +++ b/sfx2/source/inet/inettbc.cxx @@ -206,16 +206,15 @@ void SfxURLToolBoxControl_Impl::StateChanged pURLBox->Clear(); css::uno::Sequence< css::uno::Sequence< css::beans::PropertyValue > > lList = SvtHistoryOptions().GetList(ePICKLIST); - for (sal_Int32 i=0; i<lList.getLength(); ++i) + for (const css::uno::Sequence< css::beans::PropertyValue >& lProps : lList) { - css::uno::Sequence< css::beans::PropertyValue > lProps = lList[i]; - for (sal_Int32 p=0; p<lProps.getLength(); ++p) + for (const auto& rProp : lProps) { - if (lProps[p].Name != HISTORY_PROPERTYNAME_URL) + if (rProp.Name != HISTORY_PROPERTYNAME_URL) continue; OUString sURL; - if (!(lProps[p].Value>>=sURL) || sURL.isEmpty()) + if (!(rProp.Value>>=sURL) || sURL.isEmpty()) continue; INetURLObject aURL ( sURL ); |