2012-10-15 16:20 UTC+0300 Alexander Kresin <alex at belacy.belgorod.su>

* harbour/src/rtl/gtwvt/gtwvt.c
    ! Handling of K_ALT_COMMA and K_ALT_PERIOD has been added.
This commit is contained in:
Alexander S.Kresin
2012-10-15 12:22:49 +00:00
parent 9f0d26d01c
commit 943832d763
2 changed files with 10 additions and 0 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-10-15 16:20 UTC+0300 Alexander Kresin <alex at belacy.belgorod.su>
* 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

View File

@@ -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;