mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 15:12:40 +02:00
26 lines
396 B
ObjectPascal
26 lines
396 B
ObjectPascal
unit regappforms;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
custforms, appform, dbappform;
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
; // Do nothing. Custom forms are registered during initialization.
|
|
// For some reason does not work if registered here.
|
|
end;
|
|
|
|
initialization
|
|
RegisterCustomForm(TAppForm,'AppForms');
|
|
RegisterCustomForm(TDBAppForm,'AppForms');
|
|
|
|
end.
|
|
|