fix Count() -> size() in DBG_UTIL mode

This commit is contained in:
Caolán McNamara 2011-03-04 15:37:57 +00:00
parent 632771cc69
commit 7bfc7bd69d

View file

@ -1553,7 +1553,7 @@ SfxPoolItem* SdrCustomShapeAdjustmentItem::Clone( SfxItemPool * /*pPool*/) const
const SdrCustomShapeAdjustmentValue& SdrCustomShapeAdjustmentItem::GetValue( sal_uInt32 nIndex ) const
{
#ifdef DBG_UTIL
if ( aAdjustmentValueList.Count() <= nIndex )
if ( aAdjustmentValueList.size() <= nIndex )
OSL_FAIL( "SdrCustomShapeAdjustemntItem::GetValue - nIndex out of range (SJ)" );
#endif
return aAdjustmentValueList[nIndex];