Changeset 112
- Timestamp:
- Feb 2, 2018, 5:03:28 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Components/Directories.pas
r111 r112 16 16 uses 17 17 FileUtil, LCLIntf, LCLType, LCLProc, LazUTF8, SysUtils; 18 19 var20 AppDataDir: string;21 src, dst: TSearchRec;22 23 24 function DirectoryExists(path: string): boolean;25 var26 f: TSearchRec;27 begin28 result := FindFirst(path, faDirectory, f) = 0;29 FindClose(f);30 end;31 18 32 19 function GetLocale: string; … … 70 57 71 58 procedure InitUnit; 59 var 60 AppDataDir: string; 61 src, dst: TSearchRec; 72 62 begin 73 63 LocaleCode := ''; -
trunk/Direct.lfm
r9 r112 1 1 object DirectDlg: TDirectDlg 2 2 Left = 188 3 Height = 64 3 4 Top = 198 5 Width = 360 4 6 BorderIcons = [] 5 7 BorderStyle = bsNone 6 8 Caption = 'C-evo' 7 ClientHeight = 648 ClientWidth = 3609 9 Color = clBtnFace 10 Font.Charset = DEFAULT_CHARSET10 DesignTimePPI = 125 11 11 Font.Color = clWindowText 12 12 Font.Height = -13 13 13 Font.Name = 'MS Sans Serif' 14 Font.Style = []15 14 FormStyle = fsStayOnTop 16 15 OnClose = FormClose … … 18 17 OnPaint = FormPaint 19 18 OnShow = FormShow 20 PixelsPerInch = 9619 LCLVersion = '1.8.0.6' 21 20 end -
trunk/Direct.pas
r111 r112 107 107 begin 108 108 Hide; 109 background.Update 109 background.Update; 110 110 end; 111 111 ntLoadError: … … 137 137 begin 138 138 StartDlg.Hide; 139 background.Update 139 background.Update; 140 140 end; 141 141 ntStartGo, ntStartGoRefresh, ntStartGoRefreshMaps: -
trunk/Start.lfm
r12 r112 10 10 ClientWidth = 556 11 11 Color = clBtnFace 12 DesignTimePPI = 125 12 13 Font.Color = clWindowText 13 14 Font.Height = -13 … … 24 25 OnPaint = FormPaint 25 26 OnShow = FormShow 26 LCLVersion = '1. 6.2.0'27 LCLVersion = '1.8.0.6' 27 28 object StartBtn: TButtonA 28 29 Tag = 15104 … … 195 196 OnClick = ListClick 196 197 ParentFont = False 198 ScrollWidth = 266 197 199 TabOrder = 0 198 200 TabStop = False 201 TopIndex = -1 199 202 Visible = False 200 203 end -
trunk/Start.pas
r111 r112 1854 1854 procedure TStartDlg.QuitBtnClick(Sender: TObject); 1855 1855 begin 1856 Close 1856 Close; 1857 1857 end; 1858 1858 … … 1896 1896 Shift: TShiftState; x, y: integer); 1897 1897 begin 1898 Tracking := false 1898 Tracking := false; 1899 1899 end; 1900 1900
Note:
See TracChangeset
for help on using the changeset viewer.