From 943832d763570c06004b5dc2a033464a2b8ac347 Mon Sep 17 00:00:00 2001 From: "Alexander S.Kresin" Date: Mon, 15 Oct 2012 12:22:49 +0000 Subject: [PATCH] 2012-10-15 16:20 UTC+0300 Alexander Kresin * harbour/src/rtl/gtwvt/gtwvt.c ! Handling of K_ALT_COMMA and K_ALT_PERIOD has been added. --- harbour/ChangeLog | 4 ++++ harbour/src/rtl/gtwvt/gtwvt.c | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8dc3f35c04..93cfcec46c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2012-10-15 16:20 UTC+0300 Alexander Kresin + * harbour/src/rtl/gtwvt/gtwvt.c + ! Handling of K_ALT_COMMA and K_ALT_PERIOD has been added. + 2012-10-15 13:55 UTC+0200 Viktor Szakats (harbour syenar.net) * contrib/gtwvg/wvgwin.c * contrib/hbamf/amfdec.c diff --git a/harbour/src/rtl/gtwvt/gtwvt.c b/harbour/src/rtl/gtwvt/gtwvt.c index ed30995afc..95db6e892d 100644 --- a/harbour/src/rtl/gtwvt/gtwvt.c +++ b/harbour/src/rtl/gtwvt/gtwvt.c @@ -1600,6 +1600,12 @@ static HB_BOOL hb_gt_wvt_KeyEvent( PHB_GTWVT pWVT, UINT message, WPARAM wParam, case 50: c = K_ALT_M; break; + case 51: + c = K_ALT_COMMA; + break; + case 52: + c = K_ALT_PERIOD; + break; default: c = ( int ) wParam; break;