Ignore:
Timestamp:
May 5, 2008, 8:42:57 PM (17 years ago)
Author:
RBRi
Message:

+ copyright and license fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.19_branch/NewView/VersionUnit.pas

    r275 r294  
    1111
    1212function GetAppVersion: string;
     13function GetCopyrightMsg: string;
     14function GetLicenseMsg: string;
    1315
    1416Implementation
     
    1719  Version =        'V2.19.1'; // $SS_REQUIRE_NEW_VERSION$
    1820  BldLevelVersion = '2.19.1'; // Embedded for IBM BLDLEVEL tool
     21  CopyrightMsg = 'Copyright 2005 Aaron Lawrence; 2006-2008 Ronald Brill';
     22  LicenseMsg   = 'Licensed under the GNU Public License';
     23
    1924
    2025// RELEASE PROCESS
     
    201206end;
    202207
     208function GetCopyrightMsg: string;
     209begin
     210  Result:= CopyrightMsg;
     211end;
     212
     213function GetLicenseMsg: string;
     214begin
     215  Result:= LicenseMsg;
     216end;
     217
    203218const
    204219  Vendor = 'Aaron Lawrence';
Note: See TracChangeset for help on using the changeset viewer.