Kaydet (Commit) 7bbd7937 authored tarafından Michael Stahl's avatar Michael Stahl

svl: fix build "invalid operands to binary operator!="

Change-Id: I948423922b286f98531aad4406c1b36cb6ef95b6
üst aed0a639
......@@ -743,7 +743,7 @@ const SfxPoolItem& SfxItemPool::Put( const SfxPoolItem& rItem, sal_uInt16 nWhich
pNewItem->SetWhich(nWhich);
#ifdef DBG_UTIL
SFX_ASSERT( rItem.Type() == pNewItem->Type(), nWhich, "unequal types in Put(): no Clone()?" )
if ( !dynamic_cast<const SfxSetItem*>( &rItem ) != nullptr )
if (dynamic_cast<const SfxSetItem*>(&rItem) == nullptr)
{
SFX_ASSERT( !IsItemFlag(nWhich, SfxItemPoolFlags::POOLABLE) ||
rItem == *pNewItem,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment