2007-08-05 15:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/contrib/libct/screen3.prg
    ! fixed typo ISNUMERIC was used instead of ISNUMBER
This commit is contained in:
Przemyslaw Czerpak
2007-08-05 13:10:32 +00:00
parent 76f8caa145
commit 57752f19db
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-08-05 15:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/libct/screen3.prg
! fixed typo ISNUMERIC was used instead of ISNUMBER
2007-08-05 15:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/libct/Makefile
+ harbour/contrib/libct/keysec.prg

View File

@@ -56,13 +56,13 @@
#include "common.ch"
FUNCTION CLEAREOL( nRow, nCol, xAttr, xChar )
IF !ISNUMERIC( nRow )
IF !ISNUMBER( nRow )
nRow := ROW()
ENDIF
RETURN CLEARWIN( nRow, nCol, nRow, /*MAXCOL()*/, xAttr, xChar )
FUNCTION CLEOL( nRow, nCol )
IF !ISNUMERIC( nRow )
IF !ISNUMBER( nRow )
nRow := ROW()
ENDIF
RETURN CLEARWIN( nRow, nCol, nRow, /*MAXCOL()*/, 7 /*"W/N"*/, " " )