source: trunk/Forms/UFormFavorites.pas

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 
1unit UFormFavorites;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs;
9
10type
11 TFormFavorites = class(TForm)
12 private
13 { private declarations }
14 public
15 { public declarations }
16 end;
17
18var
19 FormFavorites: TFormFavorites;
20
21implementation
22
23{$R *.lfm}
24
25end.
26
Note: See TracBrowser for help on using the repository browser.