source: components/CoolTrayIcon/RegisterTrayIcons.pas

Last change on this file was 1, checked in by maron, 16 years ago

3.1 verze, první revize

File size: 1003 bytes
Line 
1{*****************************************************************}
2{ The CoolTrayIcon and TextTrayIcon components are freeware. }
3{ }
4{ Feel free to use and improve them. I would be pleased to hear }
5{ what you think. }
6{ }
7{ Troels Jakobsen - delphiuser@get2net.dk }
8{ Copyright (c) 2002 }
9{ }
10{ This unit by Jouni Airaksinen - mintus@codefield.com }
11{*****************************************************************}
12
13unit RegisterTrayIcons;
14
15interface
16
17procedure Register;
18
19implementation
20
21uses
22 Classes, CoolTrayIcon, TextTrayIcon;
23
24procedure Register;
25begin
26 RegisterComponents('Tray Icons', [TCoolTrayIcon, TTextTrayIcon]);
27end;
28
29end.
30
Note: See TracBrowser for help on using the repository browser.