You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8724 8e941d3f-bd1b-0410-a28a-d453659cc2b4
37 lines
466 B
ObjectPascal
37 lines
466 B
ObjectPascal
unit frm_Readme;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, Controls, Forms, Dialogs, StdCtrls;
|
|
|
|
type
|
|
|
|
{ TfrmReadme }
|
|
|
|
TfrmReadme = class(TForm)
|
|
Memo1: TMemo;
|
|
procedure FormActivate(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frmReadme: TfrmReadme;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
procedure TfrmReadme.FormActivate(Sender: TObject);
|
|
begin
|
|
Memo1.WordWrap := True;
|
|
end;
|
|
|
|
|
|
end.
|