Changeset 648 for trunk/Start.pas
- Timestamp:
- Feb 19, 2025, 9:43:42 AM (3 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Start.pas
r647 r648 235 235 236 236 ActionsOffered := [maConfig, maManual, maCredits, maWeb]; 237 if FileExists(GetAppShare File(AITemplateFileName)) then237 if FileExists(GetAppSharePath(AITemplateFileName)) then 238 238 Include(ActionsOffered, maAIDev); 239 239 … … 484 484 for I := 1 to Languages.Count - 1 do 485 485 with Languages[I] do begin 486 Available := DirectoryExists(GetAppShare Dir('Localization' + DirectorySeparator + Code)) or (Code = 'en');486 Available := DirectoryExists(GetAppSharePath('Localization' + DirectorySeparator + Code)) or (Code = 'en'); 487 487 end; 488 488 end; … … 1517 1517 maManual: DirectHelp(cStartHelp); 1518 1518 maCredits: DirectHelp(cStartCredits); 1519 maAIDev: OpenDocument(GetAppShare File(AITemplateFileName));1519 maAIDev: OpenDocument(GetAppSharePath(AITemplateFileName)); 1520 1520 maWeb: OpenURL(CevoHomepage); 1521 1521 end;
Note:
See TracChangeset
for help on using the changeset viewer.