source:
trunk/Packages/CoolDocking/Demo/IDE/ULocalVariablesForm.pas
Last change on this file was 73, checked in by , 12 years ago | |
---|---|
File size: 476 bytes |
Line | |
---|---|
1 | unit ULocalVariablesForm; |
2 | |
3 | {$mode objfpc}{$H+} |
4 | |
5 | interface |
6 | |
7 | uses |
8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, |
9 | UCDClient; |
10 | |
11 | type |
12 | |
13 | { TLocalVariablesForm } |
14 | |
15 | TLocalVariablesForm = class(TForm) |
16 | published |
17 | Memo1: TMemo; |
18 | CoolDockClient1: TCDClient; |
19 | { private declarations } |
20 | public |
21 | { public declarations } |
22 | end; |
23 | |
24 | var |
25 | LocalVariablesForm: TLocalVariablesForm; |
26 | |
27 | implementation |
28 | |
29 | {$R *.lfm} |
30 | |
31 | end. |
32 |
Note:
See TracBrowser
for help on using the repository browser.