Ignore:
Timestamp:
Feb 2, 2018, 5:03:28 PM (6 years ago)
Author:
chronos
Message:
  • Modified: Code formatting corrections.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Components/Directories.pas

    r111 r112  
    1616uses
    1717  FileUtil, LCLIntf, LCLType, LCLProc, LazUTF8, SysUtils;
    18 
    19 var
    20   AppDataDir: string;
    21   src, dst: TSearchRec;
    22 
    23 
    24 function DirectoryExists(path: string): boolean;
    25 var
    26   f: TSearchRec;
    27 begin
    28   result := FindFirst(path, faDirectory, f) = 0;
    29   FindClose(f);
    30 end;
    3118
    3219function GetLocale: string;
     
    7057
    7158procedure InitUnit;
     59var
     60  AppDataDir: string;
     61  src, dst: TSearchRec;
    7262begin
    7363  LocaleCode := '';
Note: See TracChangeset for help on using the changeset viewer.