summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-08-31 22:44:53 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-09-01 06:38:56 +0000
commiteac1468db541feafcbabb88b59d3e555845bd3b2 (patch)
tree0ef3cbffd5e5fc94ade1556160f6d8bbe9f0d94b /svl
parent95bfa2c03d9dacd73670071c8108285dfc0f7830 (diff)
use IsStaticDefaultItem from poolitem.hxx instead of custom checks
Change-Id: Ic49a940d83e5b8944bd724203bb2045bb1eb22b9 Reviewed-on: https://gerrit.libreoffice.org/28567 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/itempool.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx
index 90a75fac1ffd..ecde96afe014 100644
--- a/svl/source/items/itempool.cxx
+++ b/svl/source/items/itempool.cxx
@@ -795,7 +795,7 @@ void SfxItemPool::Remove( const SfxPoolItem& rItem )
assert(rItem.GetRefCount() && "RefCount == 0, Remove impossible");
// Static Defaults are just there
- if ( rItem.GetKind() == SFX_ITEMS_STATICDEFAULT &&
+ if ( IsStaticDefaultItem(&rItem) &&
&rItem == *( pImpl->ppStaticDefaults + GetIndex_Impl(nWhich) ) )
return;