fix Count() -> size() in DBG_UTIL mode
This commit is contained in:
parent
632771cc69
commit
7bfc7bd69d
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue