Changeset 54 for trunk/Client/Application/UChronisModule.pas
- Timestamp:
- Oct 12, 2012, 11:43:43 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Client/Application/UChronisModule.pas
r53 r54 13 13 14 14 TChronisModule = class 15 System: TObject; // TChronis System;15 System: TObject; // TChronisBase; 16 16 SysName: string; 17 17 Name: string; … … 19 19 Creator: string; 20 20 License: string; 21 HomePage: string; 21 Website: string; 22 Description: TStringList; 22 23 Dependencies: TStringList; 23 24 function IsInstalled: Boolean; … … 104 105 begin 105 106 Dependencies := TStringList.Create; 107 Description := TStringList.Create; 106 108 end; 107 109 108 110 destructor TChronisModule.Destroy; 109 111 begin 112 Description.Free; 110 113 Dependencies.Free; 111 114 inherited Destroy;
Note:
See TracChangeset
for help on using the changeset viewer.