Merged revision(s) 63596 #727eb0ef72, 63627 #4fde982e86 from trunk:

LCL: Prevent DBGrid raising exception after enabled and hiding inplace editor. Issue #37385, patch from Zdravko Gabrovski.
........
Codetools: Find form's ancestor also when a generic form is specialized. Issue #37396, patch from Imants Gulbis.
........

git-svn-id: branches/fixes_2_0@64608 -
This commit is contained in:
martin 2021-02-18 01:00:29 +00:00
parent ee6fa154ed
commit c00cb12cca
2 changed files with 3 additions and 0 deletions

View File

@ -3113,6 +3113,8 @@ begin
ReadNextAtom;
if AtomIsChar('(') then begin
ReadNextAtom;
if UpAtomIs('SPECIALIZE') then
ReadNextAtom;
if AtomIsIdentifier then
AncestorClassName:=GetAtom;
end;

View File

@ -7079,6 +7079,7 @@ begin
{$ifdef dbgGrid}DebugLnEnter('grid.DoEditorHide [',Editor.ClassName,'] INIT');{$endif}
if gfEditingDone in FGridFlags then begin
ParentForm := GetParentForm(Self);
if Self.CanFocus then
ParentForm.ActiveControl := self;
end;
Editor.Visible:=False;