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