Re: [Lazarus] LCLProc.KeyAndShiftStateToKeyString needs param

2018-08-14 Thread Maxim Ganetsky via Lazarus
14.08.2018 10:58, AlexeyT via Lazarus пишет: > function KeyAndShiftStateToKeyString(Key: word; ShiftState: > TShiftState): String; > > Maxim, can you add here param Localized too? it can be 3rd param with > default "true". AFAIR this function is exposed in LCLProc interface. As it seems to be loc

[Lazarus] LCLProc.KeyAndShiftStateToKeyString needs param

2018-08-14 Thread AlexeyT via Lazarus
function KeyAndShiftStateToKeyString(Key: word; ShiftState: TShiftState): String; Maxim, can you add here param Localized too? it can be 3rd param with default "true". -- Regards, Alexey -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org htt

[Lazarus] Fix for LCLProc

2018-08-14 Thread AlexeyT via Lazarus
function KeyAndShiftStateToKeyString(Key: word; ShiftState: TShiftState): String;   if ssCtrl in ShiftState then AddPart(ifsCtrl);   if ssAlt in ShiftState then AddPart(ifsAlt);   if ssShift in ShiftState then AddPart(ifsVK_SHIFT);   if ssMeta in ShiftState then     {$IFDEF LCLcarbon}