From: Steven M. <sr...@us...> - 2005-02-21 06:33:21
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7135 Modified Files: InstantCode.pas Log Message: Bug fix: The Count property item was being deleted twice in TInstantCodeAttributeTailor.Apply. Index: InstantCode.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantCode.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** InstantCode.pas 18 Feb 2005 14:27:04 -0000 1.10 --- InstantCode.pas 21 Feb 2005 06:33:12 -0000 1.11 *************** *** 3440,3444 **** procedure TInstantCodeAttributeTailor.DeleteMethods; begin - DeleteItem(FCountProp); DeleteItem(FAddMethod); DeleteItem(FClearMethod); --- 3440,3443 ---- *************** *** 8550,8551 **** --- 8549,8555 ---- end. + + + + + |