diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dfc131184c..326ef7eb06 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2001-11-29 22:05 GMT+1 JFL (mafact) + * harbour/source/vm/classes.c + * Forgot one printf(..) within hb_clsisclassref() + 2001-11-29 12:15 UTC-0800 Brian Hays * makefile.bc diff --git a/harbour/source/vm/classes.c b/harbour/source/vm/classes.c index 7654dafe13..a5364e0f7d 100644 --- a/harbour/source/vm/classes.c +++ b/harbour/source/vm/classes.c @@ -377,8 +377,6 @@ void hb_clsIsClassRef( void ) while( uiClass-- ) { - printf("isClassRef %i\n",uiClass ); - if( pClass->pInlines ) hb_gcItemRef( pClass->pInlines ); @@ -951,6 +949,8 @@ ULONG hb_objHasMsg( PHB_ITEM pObject, char *szString ) * HB_OO_CLSTP_SHARED 32 : (method or) data shared * HB_OO_CLSTP_CLASS 64 : message is the name of a superclass * HB_OO_CLSTP_SUPER 128 : message is herited + * HB_OO_CLSTP_CLASSCTOR 256 : Class method constructor + * HB_OO_CLSTP_CLASSMETH 512 : Class method */