diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-11-18 21:30:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-11-18 22:21:55 +0100 |
commit | 70840f46755063a32af3bdb02ed6dba1f4873d01 (patch) | |
tree | 4b9c4147a10651cfb9c59ed63a6c83b50d0ef213 /svx/source/items/galleryitem.cxx | |
parent | e5992129905aacf34fad391ec19feeeec83a6714 (diff) |
svx: assert SfxPoolItem::operator==
Change-Id: I7a5898f0dffb4d25b6e1bb916b3c6b36374f9912
Diffstat (limited to 'svx/source/items/galleryitem.cxx')
-rw-r--r-- | svx/source/items/galleryitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/items/galleryitem.cxx b/svx/source/items/galleryitem.cxx index 212cded5d461..cd82898dfe04 100644 --- a/svx/source/items/galleryitem.cxx +++ b/svx/source/items/galleryitem.cxx @@ -123,7 +123,7 @@ bool SvxGalleryItem::PutValue( const css::uno::Any& rVal, sal_uInt8 /* nMemberId bool SvxGalleryItem::operator==( const SfxPoolItem& rAttr ) const { - DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" ); + assert(SfxPoolItem::operator==(rAttr)); const SvxGalleryItem& rItem = static_cast<const SvxGalleryItem&>(rAttr); |