2011-07-10 22:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* examples/gtwvw/tests/wvwtest9.prg
! fixed bad code:
inkey()!=Chr(0) -> inkey()!=0
(perfect example why certain "extensions" are not a good idea
from a technical standpoint.)
This commit is contained in:
@@ -16,6 +16,13 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-07-10 22:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* examples/gtwvw/tests/wvwtest9.prg
|
||||
! fixed bad code:
|
||||
inkey()!=Chr(0) -> inkey()!=0
|
||||
(perfect example why certain "extensions" are not a good idea
|
||||
from a technical standpoint.)
|
||||
|
||||
2011-07-08 15:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* package/winuni/HARBOUR_README_MINGW
|
||||
! updated tdm link
|
||||
|
||||
@@ -377,7 +377,7 @@ local lEchoing := .f.
|
||||
CLS
|
||||
?? "Press Ctrl+E to toggle between echoing what you type to previous window"
|
||||
?
|
||||
do while inkey()<>chr(0); enddo //clear typeahead
|
||||
do while inkey()!=0; enddo //clear typeahead
|
||||
ch := inkey(0)
|
||||
do while !(ch == K_ESC)
|
||||
if ch==K_ENTER
|
||||
|
||||
Reference in New Issue
Block a user