diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-01 09:12:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-01 11:20:24 +0200 |
commit | c6eb232cb7b2a1fc58edb379463d1aa589973af4 (patch) | |
tree | dfb9fb601727b83356ece5f8a37394677d1590ee /include/svl/itemset.hxx | |
parent | 3da977def7fa97e791c279c05de6b2e06b79fcd4 (diff) |
loplugin:unuseddefaultparam in svl
Change-Id: Ifc82563c8930332d460df4d97935ba6e9946689f
Diffstat (limited to 'include/svl/itemset.hxx')
-rw-r--r-- | include/svl/itemset.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/svl/itemset.hxx b/include/svl/itemset.hxx index 6607ad5d37b6..ac3ea8def2f6 100644 --- a/include/svl/itemset.hxx +++ b/include/svl/itemset.hxx @@ -118,7 +118,7 @@ public: void DisableItem(sal_uInt16 nWhich); void InvalidateItem( sal_uInt16 nWhich ); sal_uInt16 ClearItem( sal_uInt16 nWhich = 0); - void ClearInvalidItems( bool bHardDefault = false ); + void ClearInvalidItems(); void InvalidateAllItems(); // HACK(via nWhich = 0) ??? inline void SetParent( const SfxItemSet* pNew ); @@ -136,7 +136,7 @@ public: bool Set( const SfxItemSet&, bool bDeep = true ); void Intersect( const SfxItemSet& rSet ); - void MergeValues( const SfxItemSet& rSet, bool bOverwriteDefaults = false ); + void MergeValues( const SfxItemSet& rSet ); void Differentiate( const SfxItemSet& rSet ); void MergeValue( const SfxPoolItem& rItem, bool bOverwriteDefaults = false ); @@ -146,8 +146,7 @@ public: void MergeRange( sal_uInt16 nFrom, sal_uInt16 nTo ); const SfxItemSet* GetParent() const { return m_pParent; } - void Load( SvStream &, bool bDirect = false, - const SfxItemPool *pRefPool = nullptr ); + void Load( SvStream &, bool bDirect = false ); void Store( SvStream &, bool bDirect = false ) const; bool operator==(const SfxItemSet &) const; |