Line | |
---|
1 | unit ReviewChangesU;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
---|
7 | Dialogs, ExtCtrls, StdCtrls, CheckLst;
|
---|
8 |
|
---|
9 | type
|
---|
10 | TReviewChangesForm = class(TForm)
|
---|
11 | CheckListBox1: TCheckListBox;
|
---|
12 | Panel1: TPanel;
|
---|
13 | Panel2: TPanel;
|
---|
14 | OKButton: TButton;
|
---|
15 | CancelButton: TButton;
|
---|
16 | Label1: TLabel;
|
---|
17 | private
|
---|
18 | { Private declarations }
|
---|
19 | public
|
---|
20 | { Public declarations }
|
---|
21 | end;
|
---|
22 |
|
---|
23 | var
|
---|
24 | ReviewChangesForm: TReviewChangesForm;
|
---|
25 |
|
---|
26 | implementation
|
---|
27 |
|
---|
28 | {$R *.dfm}
|
---|
29 |
|
---|
30 | end.
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.