Hi ...
It happened again ... now with TAdvCheckedTreeView
.
The same as in TTMSFNCColorPicker OnColorSelected event in Delphi 11 differs from Delphi 12
TAdvCheckedTreeView.
OnCloseInplaceEditor
Delphi 11:
(Sender: TObject; ANode: TAdvTreeViewVirtualNode; AColumn: Integer; AInplaceEditor:
TWinControl; ACancelled: Boolean; var ACanClose: Boolean)
Delphi12:
(Sender: TObject; ANode: TAdvTreeViewVirtualNode; AColumn: Integer; AInplaceEditor:
TAdvTreeViewInplaceEditor; ACancelled: Boolean; var ACanClose: Boolean)
TAdvCheckedTreeView.
OnCustomizeInplaceEditor
Delphi 11:
(Sender: TObject; ANode: TAdvTreeViewVirtualNode; AColumn: Integer; AInplaceEditor:
TWinControl)
begin
inherited;
end;
Delphi12:
(Sender: TObject; ANode: TAdvTreeViewVirtualNode; AColumn: Integer; AInplaceEditor:
TAdvTreeViewInplaceEditor)`
Same question: Is there a global workaround apart from using IFDEFs everywhere? Do you know if is there something that can be tunrned on or off in Delphi 12/11 to avoid it ?
Thanks.