summaryrefslogtreecommitdiff
path: root/sfx2/source/inet
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2019-07-21 19:39:26 +0300
committerArkadiy Illarionov <qarkai@gmail.com>2019-07-29 18:44:33 +0200
commit25b200ff79c71c831bc7e6fe8b1ec0b5315e96d6 (patch)
treeb8e7cc15bfe82b677fb1bfc791b3f2f5a50fdc79 /sfx2/source/inet
parentc762e3859973355b31f6676a8e697c5fd78c9970 (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.cxx9
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 );