summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-03-04 15:37:57 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-03-04 15:38:26 +0000
commit5e30dec97089f3f471f850b17ebacdb351c11182 (patch)
tree240fa6841d847abbb213c60e8f88e50119f3afc5
parent3f5c66b1eb894ca5f7fa46cad838e0aa44a6923e (diff)
fix Count() -> size() in DBG_UTIL mode
-rw-r--r--svx/source/svdraw/svdattr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx
index f7ccb3f9da..174e7f4239 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];