From f48c8e5a11827dccfdc1be72dc8c1990c2ac8449 Mon Sep 17 00:00:00 2001 From: Eddie Runia Date: Sat, 15 May 1999 12:51:23 +0000 Subject: [PATCH] still one more Array --- harbour/source/rtl/classes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/source/rtl/classes.c b/harbour/source/rtl/classes.c index ddc102850c..7f522b7783 100644 --- a/harbour/source/rtl/classes.c +++ b/harbour/source/rtl/classes.c @@ -140,7 +140,7 @@ static HARBOUR GetData( void ) PITEM pObject = stack.pBase + 1; WORD wIndex = pMethod->wData; - if( wIndex > ArrayLen ( pObject ) ) /* Resize needed */ + if( wIndex > hb_arrayLen ( pObject ) ) /* Resize needed */ hb_arraySize( pObject, wIndex ); /* Make large enough */ hb_arrayGet( pObject, wIndex, &stack.Return ); }