Ignore:
Timestamp:
Oct 12, 2012, 11:43:43 AM (12 years ago)
Author:
chronos
Message:
  • Added: ChronisAppServer base project.
  • Modified: Changes in client virtual database layer handling.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Client/Application/UChronisModule.pas

    r53 r54  
    1313
    1414  TChronisModule = class
    15     System: TObject; // TChronisSystem;
     15    System: TObject; // TChronisBase;
    1616    SysName: string;
    1717    Name: string;
     
    1919    Creator: string;
    2020    License: string;
    21     HomePage: string;
     21    Website: string;
     22    Description: TStringList;
    2223    Dependencies: TStringList;
    2324    function IsInstalled: Boolean;
     
    104105begin
    105106  Dependencies := TStringList.Create;
     107  Description := TStringList.Create;
    106108end;
    107109
    108110destructor TChronisModule.Destroy;
    109111begin
     112  Description.Free;
    110113  Dependencies.Free;
    111114  inherited Destroy;
Note: See TracChangeset for help on using the changeset viewer.