mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-02-19 18:16:35 +01:00
Education: Fix compilation of EduOptionsDialog.
This commit is contained in:
parent
8894de2268
commit
04e58570c5
@ -29,11 +29,12 @@ type
|
||||
ButtonPanel1: TButtonPanel;
|
||||
FramePanel: TPanel;
|
||||
FramesTreeView: TTreeView;
|
||||
procedure ButtonPanel1Click(Sender: TObject);
|
||||
procedure FormCreate(Sender: TObject);
|
||||
private
|
||||
{ private declarations }
|
||||
|
||||
public
|
||||
{ public declarations }
|
||||
|
||||
end;
|
||||
|
||||
var
|
||||
@ -43,6 +44,8 @@ procedure Register;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
|
||||
@ -55,6 +58,9 @@ begin
|
||||
ButtonPanel1.OKButton.OnClick:=@ButtonPanel1Click;
|
||||
end;
|
||||
|
||||
{$R *.lfm}
|
||||
procedure TEduOptionsDialog.ButtonPanel1Click(Sender: TObject);
|
||||
begin
|
||||
;
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user