From e5d86db5f8fd4f82adfc3d3fd7f90b68dce0f4db Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Fri, 4 Feb 2000 22:11:55 +0000 Subject: [PATCH] 20000204-23:10 GMT+1 Antonio Linares --- harbour/ChangeLog | 12 ++++++++---- harbour/source/rtl/inkey.c | 3 +-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f5ef066195..f1b6d07caf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000204-23:10 GMT+1 Antonio Linares + * source/rtl/inkey.c + * static int s_iMouseCol = 0, s_iMouseRow = 0; + (changed SHORT into int accordingly to Dave proposal). + 20000204-19:25 GMT-3 Luiz Rafael Culik *Source/rdd/dbcmd.c * Change some functions docs @@ -12,10 +17,10 @@ *source/compiler/harbour.c * fixed initialization of static variable with dimmed array STATIC var[ 2 ] - + *source/rtl/inkey.c * fixed s_iMouseCol/s_iMouseRow if compiled with GCC/LINUX - + 20000204-22:12 GMT+3 Alexander Kresin * source/rdd/dbcmd.c + added hb_rddGetCurrentWorkAreaPointer() function @@ -143,8 +148,7 @@ - Removed debug information from OS/2 builds of Harbour * doc/whatsnew.txt - % Synchronized with updates that were made to the build31 branch - * source/pp/pragma.c + % Synchronized with updates that were made to the build31 branch * source/pp/pragma.c * contrib/dot/pp_harb.ch * tests/inline_c.prg * STOPDUMP renamed as ENDDUMP (with Ron permission) diff --git a/harbour/source/rtl/inkey.c b/harbour/source/rtl/inkey.c index 0b5305995e..2d6562befb 100644 --- a/harbour/source/rtl/inkey.c +++ b/harbour/source/rtl/inkey.c @@ -99,7 +99,7 @@ static DWORD s_cNumRead = 0; /* Ok to use DWORD here, because this is specific... */ static DWORD s_cNumIndex = 0; /* ...to the Windows API, which defines DWORD, etc. */ static INPUT_RECORD s_irInBuf[ INPUT_BUFFER_LEN ]; - static SHORT s_iMouseCol = 0, s_iMouseRow = 0; + static int s_iMouseCol = 0, s_iMouseRow = 0; #endif #endif @@ -1368,4 +1368,3 @@ HARBOUR HB_FKMAX( void ) * CLEAR TYPEAHEAD,__KEYBOARD() * $END$ */ -