mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 11:56:45 +02:00
gtk: hide some warnings when HideKeyTableWarnings is defined
git-svn-id: trunk@21519 -
This commit is contained in:
parent
3311008f4b
commit
040131af50
@ -3002,7 +3002,9 @@ procedure InitKeyboardTables;
|
||||
$E4: AFreeVK := $E6;
|
||||
$E6: AFreeVK := $E9;
|
||||
$F5: begin
|
||||
{$ifndef HideKeyTableWarnings}
|
||||
DebugLn('[WARNING] Out of OEM specific VK codes, changing to unassigned');
|
||||
{$endif}
|
||||
AFreeVK := $88;
|
||||
end;
|
||||
$8F: AFreeVK := $97;
|
||||
@ -3010,7 +3012,9 @@ procedure InitKeyboardTables;
|
||||
$DA: AFreeVK := $E5;
|
||||
$E5: AFreeVK := $E8;
|
||||
$E8: begin
|
||||
{$ifndef HideKeyTableWarnings}
|
||||
DebugLn('[WARNING] Out of unassigned VK codes, assigning $FF');
|
||||
{$endif}
|
||||
AFreeVK := $FF;
|
||||
end;
|
||||
$FF: AFreeVK := $FF; // stay there
|
||||
|
Loading…
Reference in New Issue
Block a user