summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlcss1.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-10-01 00:21:00 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2019-10-01 06:35:49 +0200
commit981654f6e0d57c2c6dd1bbf740a6b67941146497 (patch)
treef7cf40ccf38d4666280b647c77ea7859e97f89e4 /sw/source/filter/html/htmlcss1.cxx
parent1fc63383ccd8af144d681ba405f5ead863ac24e1 (diff)
Drop SfxItemIter::FirstItem
It is always used right after the iterator is created, where simple GetCurItem gives the same value without reseting the position. Change-Id: I871dc7989b79e13f06436ef7928692645b5209f6 Reviewed-on: https://gerrit.libreoffice.org/79903 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sw/source/filter/html/htmlcss1.cxx')
-rw-r--r--sw/source/filter/html/htmlcss1.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/sw/source/filter/html/htmlcss1.cxx b/sw/source/filter/html/htmlcss1.cxx
index 8ff8ab08d378..053b43775627 100644
--- a/sw/source/filter/html/htmlcss1.cxx
+++ b/sw/source/filter/html/htmlcss1.cxx
@@ -2241,8 +2241,7 @@ void SwHTMLParser::InsertParaAttrs( const SfxItemSet& rItemSet )
{
SfxItemIter aIter( rItemSet );
- const SfxPoolItem *pItem = aIter.FirstItem();
- while( pItem )
+ for (const SfxPoolItem* pItem = aIter.GetCurItem(); pItem; pItem = aIter.NextItem())
{
// search for the table entry of the item...
sal_uInt16 nWhich = pItem->Which();
@@ -2258,8 +2257,6 @@ void SwHTMLParser::InsertParaAttrs( const SfxItemSet& rItemSet )
if (!bSuccess)
m_aParaAttrs.pop_back();
}
-
- pItem = aIter.NextItem();
}
}