Changeset 294 for branches/2.19_branch/NewView/VersionUnit.pas
- Timestamp:
- May 5, 2008, 8:42:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.19_branch/NewView/VersionUnit.pas
r275 r294 11 11 12 12 function GetAppVersion: string; 13 function GetCopyrightMsg: string; 14 function GetLicenseMsg: string; 13 15 14 16 Implementation … … 17 19 Version = 'V2.19.1'; // $SS_REQUIRE_NEW_VERSION$ 18 20 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 19 24 20 25 // RELEASE PROCESS … … 201 206 end; 202 207 208 function GetCopyrightMsg: string; 209 begin 210 Result:= CopyrightMsg; 211 end; 212 213 function GetLicenseMsg: string; 214 begin 215 Result:= LicenseMsg; 216 end; 217 203 218 const 204 219 Vendor = 'Aaron Lawrence';
Note:
See TracChangeset
for help on using the changeset viewer.