From c8c8bfab40cc894b1644ef9484dd9a7c8f05e575 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Wed, 14 Jun 2000 19:32:13 +0000 Subject: [PATCH] See ChangeLog entry 2000-06-14 15:30 UTC-0400 David G. Holm --- harbour/ChangeLog | 5 +++++ harbour/source/rtl/gtwin/gtwin.c | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0bb24b7d0d..7c5f85b8c2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +2000-06-14 15:30 UTC-0400 David G. Holm + + * source/rtl/gtwin/gtwin.c + ! Removed debug printf() statements. + 2000-06-14 10:00 UTC-0800 Ron Pinkas * source/pp/ppcore.c diff --git a/harbour/source/rtl/gtwin/gtwin.c b/harbour/source/rtl/gtwin/gtwin.c index ca55b3fab5..677a279ccf 100644 --- a/harbour/source/rtl/gtwin/gtwin.c +++ b/harbour/source/rtl/gtwin/gtwin.c @@ -314,9 +314,6 @@ int hb_gt_ReadKey( HB_inkey_enum eventmask ) /* Save the keyboard state and ASCII key code */ DWORD dwState = s_irInBuf[ s_cNumIndex ].Event.KeyEvent.dwControlKeyState; ch = s_irInBuf[ s_cNumIndex ].Event.KeyEvent.uChar.AsciiChar; -printf( "\n\nhb_gt_ReadKey: The keyboard state is 0x%04X, the character code is %d", dwState, ch ); -printf( ", the virtual key code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent.wVirtualKeyCode ); -printf( ", the virtual scan code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent.wVirtualScanCode ); if( ch == 224 ) { /* Strip extended key lead-in codes */ @@ -663,7 +660,6 @@ printf( ", the virtual scan code is %d", s_irInBuf[ s_cNumIndex ].Event.KeyEvent s_cNumIndex++; } -if( ch ) printf( ", and the return code is %d", ch ); return ch; }