2001-05-14 21:30 UTC+1 JFL (mafact) <jfl@mafact.com>

This commit is contained in:
Jean-Francois Lefebvre
2001-05-14 19:29:47 +00:00
parent 0193067d92
commit 185c620932
2 changed files with 18 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2001-05-14 21:30 UTC+1 JFL (mafact) <jfl@mafact.com>
* harbour/utils/hbmake/ffile1.prg
* remed two old method wich where not anymore used
nor declared from the class.
2001-05-14 22:14 GMT+3 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
* bugs fixed, reported by John M. S. Chiang, related to indexing of

View File

@@ -362,6 +362,10 @@ METHOD goBottom() CLASS FileBase
Returns: Self
Purpose: To close the file
*/
/* Should not any more exist here ... Not sure so I just keep it remed */
/* JFL in all case it is not anymore declared from the Class */
/*
METHOD FCLOSE() CLASS FileBase
IF Self:noDosError() .AND. Self:nDosHandle > 0
@@ -373,7 +377,7 @@ METHOD FCLOSE() CLASS FileBase
ENDIF
RETURN ( self )
*/
/* Method: write(<cChar>)
Params: <cChar>
Returns: Self
@@ -409,6 +413,13 @@ METHOD WRITE( cChar ) CLASS FileBase
in a forward direction. The default value is a logical true
(.T.) value.
*/
/* Should not any more exist here ... Not sure so I just keep it remed */
/* JFL in all case it is not anymore declared from the Class */
/*
/*
METHOD Buffget( lForward ) CLASS FileBase
LOCAL cBuffer // as char
@@ -456,7 +467,7 @@ METHOD Buffget( lForward ) CLASS FileBase
ENDIF
RETURN ( nLocation )
*/
/* Method: appendLine( <cLine )
Params: <cLine> Character line to append
Returns: Self