use hb_keyChar(), some other corrections

This commit is contained in:
Viktor Szakats
2013-03-20 12:13:14 +01:00
parent 8c6f90cc84
commit 4d8453d1a7
2 changed files with 7 additions and 3 deletions

View File

@@ -10,6 +10,10 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-20 12:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* doc/en/input.txt
+ use hb_keyChar(), some other corrections
2013-03-20 00:48 UTC+0100 Viktor Szakats (harbour syenar.net)
* config/postinst.hb
* utils/hbmk2/hbmk2.prg

View File

@@ -21,7 +21,7 @@
$ONELINER$
Extracts the next key code from the Harbour keyboard buffer.
$SYNTAX$
Inkey( [<nTimeout>] [,<nEvents>] ) --> nKey
Inkey( [<nTimeout>] [, <nEvents>] ) --> nKey
$ARGUMENTS$
<nTimeout> is an optional timeout value in seconds, with a granularity
of 1/10th of a second. If omitted, Inkey() returns immediately. If set
@@ -120,7 +120,7 @@
$SUBCATEGORY$
User interface
$ONELINER$
DO NOT CALL THIS FUNCTION DIRECTLY!
Use hb_keyPut() instead
$SYNTAX$
KEYBOARD <cString>
CLEAR TYPEAHEAD
@@ -226,7 +226,7 @@
EXIT
ELSE
IF nKey != 0
cChar := Chr( nKey )
cChar := hb_keyChar( nKey )
ENDIF
ENDIF
ENDDO