diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-04 15:37:57 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-04 15:38:26 +0000 |
commit | 7bfc7bd69dee2bc8af4f3a80727517dc54833deb (patch) | |
tree | b66d3282f39186b075f3c68930d69de62a826346 /svx | |
parent | 632771cc6964a64bb57ed3c5b045012ed80291b9 (diff) |
fix Count() -> size() in DBG_UTIL mode
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdattr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx index 0c4021c4c004..06d6df2339ff 100644 --- a/svx/source/svdraw/svdattr.cxx +++ b/svx/source/svdraw/svdattr.cxx @@ -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]; |