Changeset 116 for trunk/Packages/Common/UApplicationInfo.pas
- Timestamp:
- Aug 18, 2021, 5:50:18 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/UApplicationInfo.pas
r115 r116 6 6 7 7 uses 8 SysUtils, Classes, Forms, URegistry, Controls, Graphics ;8 SysUtils, Classes, Forms, URegistry, Controls, Graphics, LCLType; 9 9 10 10 type … … 14 14 TApplicationInfo = class(TComponent) 15 15 private 16 FDescription: T Caption;16 FDescription: TTranslateString; 17 17 FIcon: TBitmap; 18 18 FIdentification: Byte; … … 49 49 property EmailContact: string read FEmailContact write FEmailContact; 50 50 property AppName: string read FAppName write FAppName; 51 property Description: string read FDescription write FDescription;51 property Description: TTranslateString read FDescription write FDescription; 52 52 property ReleaseDate: TDateTime read FReleaseDate write FReleaseDate; 53 53 property RegistryKey: string read FRegistryKey write FRegistryKey; … … 77 77 constructor TApplicationInfo.Create(AOwner: TComponent); 78 78 begin 79 inherited Create(AOwner);79 inherited; 80 80 FVersionMajor := 1; 81 81 FIdentification := 1; … … 89 89 begin 90 90 FreeAndNil(FIcon); 91 inherited Destroy;91 inherited; 92 92 end; 93 93
Note:
See TracChangeset
for help on using the changeset viewer.