Last change
on this file was 23, checked in by chronos, 4 weeks ago |
- Modified: All unit renamed to names without U prefix.
- Modified: Removed global form variables.
- Modified: Code cleanup.
|
File size:
821 bytes
|
Line | |
---|
1 | unit FormCommit;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
---|
7 | ComCtrls, ExtCtrls;
|
---|
8 |
|
---|
9 | type
|
---|
10 |
|
---|
11 | { TFormCommit }
|
---|
12 |
|
---|
13 | TFormCommit = class(TForm)
|
---|
14 | ButtonCancel: TButton;
|
---|
15 | ButtonOk: TButton;
|
---|
16 | ComboBox1: TComboBox;
|
---|
17 | GroupBox1: TGroupBox;
|
---|
18 | ListView1: TListView;
|
---|
19 | MemoMessage: TMemo;
|
---|
20 | Panel1: TPanel;
|
---|
21 | Splitter1: TSplitter;
|
---|
22 | procedure ButtonCancelClick(Sender: TObject);
|
---|
23 | procedure FormCreate(Sender: TObject);
|
---|
24 | procedure GroupBox1Click(Sender: TObject);
|
---|
25 | end;
|
---|
26 |
|
---|
27 | var
|
---|
28 | FormCommit: TFormCommit;
|
---|
29 |
|
---|
30 |
|
---|
31 | implementation
|
---|
32 |
|
---|
33 | {$R *.lfm}
|
---|
34 |
|
---|
35 | { TFormCommit }
|
---|
36 |
|
---|
37 | procedure TFormCommit.FormCreate(Sender: TObject);
|
---|
38 | begin
|
---|
39 |
|
---|
40 | end;
|
---|
41 |
|
---|
42 | procedure TFormCommit.GroupBox1Click(Sender: TObject);
|
---|
43 | begin
|
---|
44 |
|
---|
45 | end;
|
---|
46 |
|
---|
47 | procedure TFormCommit.ButtonCancelClick(Sender: TObject);
|
---|
48 | begin
|
---|
49 |
|
---|
50 | end;
|
---|
51 |
|
---|
52 | end.
|
---|
53 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.