Last change
on this file since 136 was 115, checked in by chronos, 4 years ago |
- Fixed: Build with Lazarus 2.0.10.
- Modified: CoolTranslator package replaced by Translator in Common package.
- Modified: About dialog moved to Common package.
|
File size:
557 bytes
|
Line | |
---|
1 | unit UFormLog;
|
---|
2 |
|
---|
3 | {$mode delphi}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
---|
9 |
|
---|
10 | type
|
---|
11 |
|
---|
12 | { TFormLog }
|
---|
13 |
|
---|
14 | TFormLog = class(TForm)
|
---|
15 | Memo1: TMemo;
|
---|
16 | procedure FormCreate(Sender: TObject);
|
---|
17 | private
|
---|
18 | { private declarations }
|
---|
19 | public
|
---|
20 | { public declarations }
|
---|
21 | end;
|
---|
22 |
|
---|
23 | var
|
---|
24 | FormLog: TFormLog;
|
---|
25 |
|
---|
26 | implementation
|
---|
27 |
|
---|
28 | {$R *.lfm}
|
---|
29 |
|
---|
30 | uses
|
---|
31 | UCore;
|
---|
32 |
|
---|
33 | { TFormLog }
|
---|
34 |
|
---|
35 | procedure TFormLog.FormCreate(Sender: TObject);
|
---|
36 | begin
|
---|
37 | Core.Translator.TranslateComponentRecursive(Self);
|
---|
38 | Core.ThemeManager.UseTheme(Self);
|
---|
39 | end;
|
---|
40 |
|
---|
41 | end.
|
---|
42 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.