Changeset 64
- Timestamp:
- Oct 8, 2010, 10:27:42 AM (14 years ago)
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Docking/CoolDocking/UCoolDocking.pas
r63 r64 1029 1029 R: TRect; 1030 1030 begin 1031 if (csDestroyingHandle in ControlState) then1031 if not (csDesigning in ComponentState) then 1032 1032 if Assigned(Control) then begin 1033 1033 R := Control.ClientRect; … … 1193 1193 LayoutFile: TFileStream; 1194 1194 begin 1195 if FileExistsUTF8(FileName) then1196 LayoutFile := TFileStream.Create(FileName, fmOpenReadWrite)1197 else LayoutFile := TFileStream.Create(FileName, fmCreate);1198 1195 try 1196 if FileExistsUTF8(FileName) then 1197 LayoutFile := TFileStream.Create(FileName, fmOpenReadWrite) 1198 else LayoutFile := TFileStream.Create(FileName, fmCreate); 1199 1199 SaveLayoutToStream(LayoutFile); 1200 1200 finally 1201 Free;1201 LayoutFile.Free; 1202 1202 end; 1203 1203 end; -
ExceptionLogger/CustomLineInfo.pas
r40 r64 94 94 exit; 95 95 end; 96 if ptruint(BaseAddr) < e.processaddress then Exit; 97 96 98 e.processaddress := ptruint(baseaddr) - e.processaddress; 97 99 StabsFunctionRelative := E.FunctionRelative; -
ExceptionLogger/UExceptionForm.lfm
r40 r64 36 36 Top = 3 37 37 Width = 678 38 ActivePage = TabSheet 238 ActivePage = TabSheet1 39 39 Anchors = [akTop, akLeft, akRight, akBottom] 40 TabIndex = 140 TabIndex = 0 41 41 TabOrder = 2 42 42 object TabSheet1: TTabSheet 43 43 Caption = 'General' 44 44 ClientHeight = 251 45 ClientWidth = 6 6145 ClientWidth = 670 46 46 object MemoExceptionInfo: TMemo 47 47 Left = 4 48 48 Height = 236 49 49 Top = 3 50 Width = 6 5550 Width = 664 51 51 Anchors = [akTop, akLeft, akRight, akBottom] 52 52 ReadOnly = True … … 102 102 Left = 10 103 103 Height = 17 104 Top = 2 98104 Top = 288 105 105 Width = 169 106 106 Anchors = [akLeft, akBottom]
Note:
See TracChangeset
for help on using the changeset viewer.