Last change
on this file was 3, checked in by chronos, 12 years ago |
- Modified: Menu organization.
- Added: Form for settings.
|
File size:
315 bytes
|
Line | |
---|
1 | unit UFormFavorites;
|
---|
2 |
|
---|
3 | {$mode delphi}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs;
|
---|
9 |
|
---|
10 | type
|
---|
11 | TFormFavorites = class(TForm)
|
---|
12 | private
|
---|
13 | { private declarations }
|
---|
14 | public
|
---|
15 | { public declarations }
|
---|
16 | end;
|
---|
17 |
|
---|
18 | var
|
---|
19 | FormFavorites: TFormFavorites;
|
---|
20 |
|
---|
21 | implementation
|
---|
22 |
|
---|
23 | {$R *.lfm}
|
---|
24 |
|
---|
25 | end.
|
---|
26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.