diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-04 14:51:52 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-07 05:56:59 +0000 |
commit | 37a6bafea8416541d7d250d66a9e951400b197a3 (patch) | |
tree | 7569e0394e9efae6ee610c6406f8b684ded9cabf /svl | |
parent | 5f6e5cb695ff4ab1e17653661d8243d836436a7e (diff) |
loplugin:unuseddefaultparam in various
Change-Id: I03d7381aad055cbe9bd905e4082586073f4112e0
Reviewed-on: https://gerrit.libreoffice.org/22900
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/itemset.cxx | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index d55bfa6818c7..6a28a9fcd03b 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1314,14 +1314,7 @@ void SfxItemSet::Store */ void SfxItemSet::Load ( - SvStream& rStream, // Stream we're loading from - - bool bDirect /* true - Items are directly read form the stream - and not via Surrogates - - false (default) - Items are read via Surrogates */ + SvStream& rStream // Stream we're loading from ) { assert(m_pPool); @@ -1346,7 +1339,7 @@ void SfxItemSet::Load { // Load Surrogate/Item and resolve Surrogate const SfxPoolItem *pItem = - m_pPool->LoadItem( rStream, bDirect, pRefPool ); + m_pPool->LoadItem( rStream, false/*bDirect*/, pRefPool ); // Did we load an Item or resolve a Surrogate? if ( pItem ) |