mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 14:38:01 +02:00
SynEdit: deprecate ecGotFocus / ecLostFocus. They have no functionality.
This commit is contained in:
parent
97ea7c51a4
commit
fce631b4f7
@ -298,8 +298,8 @@ const
|
||||
ecBlockIndentMove = 651; // Indent selection (indent before column-sel, therefore moving the column-sel)
|
||||
ecBlockUnindentMove = 652; // Unindent selection (indent before column-sel, therefore moving the column-sel)
|
||||
|
||||
ecGotFocus = 700;
|
||||
ecLostFocus = 701;
|
||||
ecGotFocus = 700 deprecated 'Not used / To be removed in Lazarus 5.99';
|
||||
ecLostFocus = 701 deprecated 'Not used / To be removed in Lazarus 5.99';
|
||||
|
||||
ecUserDefinedFirst = 900;
|
||||
ecUserDefinedLast = 999;
|
||||
|
@ -509,8 +509,7 @@ begin
|
||||
ecTab:
|
||||
Accept;
|
||||
ecDeleteChar,
|
||||
ecRight, ecSelRight, ecColSelRight,
|
||||
ecLostFocus, ecGotFocus:
|
||||
ecRight, ecSelRight, ecColSelRight:
|
||||
; {processed on AfterProcessing}
|
||||
else
|
||||
Cancel;
|
||||
@ -518,7 +517,6 @@ begin
|
||||
end
|
||||
else { AfterProcessing }
|
||||
case Command of
|
||||
ecLostFocus, ecGotFocus,
|
||||
ecDeleteChar:
|
||||
;
|
||||
ecDeleteLastChar,
|
||||
|
Loading…
Reference in New Issue
Block a user