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 /cui | |
parent | e5992129905aacf34fad391ec19feeeec83a6714 (diff) |
svx: assert SfxPoolItem::operator==
Change-Id: I7a5898f0dffb4d25b6e1bb916b3c6b36374f9912
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/cfgchart.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/cfgchart.cxx b/cui/source/options/cfgchart.cxx index 91c9295939ec..474a74014733 100644 --- a/cui/source/options/cfgchart.cxx +++ b/cui/source/options/cfgchart.cxx @@ -293,7 +293,7 @@ SfxPoolItem* SvxChartColorTableItem::Clone( SfxItemPool * ) const bool SvxChartColorTableItem::operator==( const SfxPoolItem& rAttr ) const { - DBG_ASSERT( SfxPoolItem::operator==( rAttr ), "SvxChartColorTableItem::operator== : types differ" ); + assert(SfxPoolItem::operator==(rAttr)); const SvxChartColorTableItem * rCTItem( dynamic_cast<const SvxChartColorTableItem * >( & rAttr )); if( rCTItem ) |