source: cprs/branches/ScanSourceForConstants/ReviewChangesU.pas

Last change on this file was 461, checked in by Kevin Toppenberg, 16 years ago

Initial upload of Multi-language support appt: ScanSourceForConstants

File size: 537 bytes
Line 
1unit ReviewChangesU;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7 Dialogs, ExtCtrls, StdCtrls, CheckLst;
8
9type
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
23var
24 ReviewChangesForm: TReviewChangesForm;
25
26implementation
27
28{$R *.dfm}
29
30end.
31
Note: See TracBrowser for help on using the repository browser.