diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-05-28 13:36:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-28 17:36:49 +0200 |
commit | bcd27039eec660fce2abd7604cdb8cd36ae4cdba (patch) | |
tree | 66aaecdf872ac6ee80142e2141b490b5d1a49880 /svl | |
parent | 9896f330cdb3df67b74b16a2c2177a8505fd2485 (diff) |
use the new SfxWhichIter::GetItemState feature
to speed up other places that are iterating over
SfxItemSets
Change-Id: I646bae12420d15e67effdd279e071cdf8a8afffd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135075
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/itemset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index c96bac69c54d..842bc2d16623 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1116,7 +1116,7 @@ void SfxItemSet::MergeValues( const SfxItemSet& rSet ) while( 0 != ( nWhich = aIter.NextWhich() ) ) { const SfxPoolItem* pItem = nullptr; - (void)rSet.GetItemState( nWhich, true, &pItem ); + (void)aIter.GetItemState( true, &pItem ); if( !pItem ) { // Not set, so default |