Kaydet (Commit) e55d2a31 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#735849 Unchecked dynamic_cast

Change-Id: Ia8f6b24db5d83337d56599214d0acdb9b144cfc3
üst d9b9b6f7
......@@ -88,12 +88,10 @@ SfxObjectItem::SfxObjectItem( sal_uInt16 nWhichId, SfxShell *pSh )
bool SfxObjectItem::operator==( const SfxPoolItem &rItem ) const
{
const SfxObjectItem *pOther = dynamic_cast<const SfxObjectItem*>( &rItem );
return pOther->_pSh == _pSh;
const SfxObjectItem& rOther = dynamic_cast<const SfxObjectItem&>(rItem);
return rOther._pSh == _pSh;
}
SfxPoolItem* SfxObjectItem::Clone( SfxItemPool *) const
{
return new SfxObjectItem( Which(), _pSh );
......
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