mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:17:57 +02:00
25 lines
259 B
ObjectPascal
25 lines
259 B
ObjectPascal
unit GenericListEditor;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Forms, StdCtrls, ButtonPanel;
|
|
|
|
type
|
|
|
|
{ TGenericListEditForm }
|
|
|
|
TGenericListEditForm = class(TForm)
|
|
ButtonPanel1: TButtonPanel;
|
|
Memo1: TMemo;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|
|
|