mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 18:58:16 +02:00
37 lines
495 B
ObjectPascal
37 lines
495 B
ObjectPascal
unit frmabout;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons,
|
|
StdCtrls;
|
|
|
|
type
|
|
|
|
{ TAboutForm }
|
|
|
|
TAboutForm = class(TForm)
|
|
Button1: TButton;
|
|
LThisApplication: TLabel;
|
|
LCopyRight1: TLabel;
|
|
LCopyRight2: TLabel;
|
|
MCopyRight: TMemo;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
AboutForm: TAboutForm;
|
|
|
|
implementation
|
|
|
|
initialization
|
|
{$I frmabout.lrs}
|
|
|
|
end.
|
|
|