From 854d5f63bd28494c9942e092c4af084e4d047394 Mon Sep 17 00:00:00 2001 From: Walter Negro Date: Fri, 14 Jun 2002 17:52:39 +0000 Subject: [PATCH] * source/rtl/getsys.prg ! Fix RETURN in Accelerator() and HitTest() functions. --- harbour/source/rtl/getsys.prg | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/harbour/source/rtl/getsys.prg b/harbour/source/rtl/getsys.prg index 475557eee2..41f0081d19 100644 --- a/harbour/source/rtl/getsys.prg +++ b/harbour/source/rtl/getsys.prg @@ -424,9 +424,8 @@ FUNCTION HitTest( aGetList, MouseRow, MouseCol, aMsg ) // Removed STATIC IF oGetList != NIL RETURN oGetlist:Hittest( aGetList, MouseRow, MouseCol, aMsg ) // Removed STATIC - ELSE - RETURN 0 ENDIF + RETURN 0 /*** * @@ -440,8 +439,8 @@ FUNCTION Accelerator( aGetList, nKey, aMsg ) // Removed STATIC IF oGetList != NIL RETURN oGetlist:Accelerator( aGetList, nKey, aMsg ) // Removed STATIC - ELSE - RETURN 0 ENDIF + RETURN 0 #endif +