Changeset 154
- Timestamp:
- Oct 16, 2017, 3:44:47 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormSettings.lfm
r151 r154 1 1 object FormSettings: TFormSettings 2 2 Left = 798 3 Height = 4913 Height = 371 4 4 Top = 367 5 Width = 6895 Width = 590 6 6 Caption = 'Settings' 7 ClientHeight = 491 8 ClientWidth = 689 7 ClientHeight = 371 8 ClientWidth = 590 9 Constraints.MinHeight = 328 10 Constraints.MinWidth = 389 9 11 OnCreate = FormCreate 10 12 OnShow = FormShow … … 12 14 LCLVersion = '1.6.4.0' 13 15 object ComboBoxLanguage: TComboBox 14 Left = 1 8416 Left = 152 15 17 Height = 28 16 18 Top = 24 17 Width = 2 3619 Width = 208 18 20 ItemHeight = 20 19 21 Style = csDropDownList … … 29 31 end 30 32 object ButtonOk: TButton 31 Left = 5 8433 Left = 506 32 34 Height = 25 33 Top = 44835 Top = 326 34 36 Width = 75 35 Anchors = [akRight ]37 Anchors = [akRight, akBottom] 36 38 Caption = 'Ok' 37 39 ModalResult = 1 … … 40 42 end 41 43 object ButtonCancel: TButton 42 Left = 4 5944 Left = 410 43 45 Height = 25 44 Top = 44746 Top = 326 45 47 Width = 75 46 48 Anchors = [akRight, akBottom] … … 75 77 end 76 78 object CheckBoxAutomaticDPI: TCheckBox 77 Left = 1 879 Left = 16 78 80 Height = 24 79 Top = 19 181 Top = 192 80 82 Width = 120 81 83 Caption = 'Automatic DPI' … … 85 87 end 86 88 object SpinEditDPI: TSpinEdit 87 Left = 9 689 Left = 94 88 90 Height = 28 89 Top = 22 191 Top = 222 90 92 Width = 97 91 93 MaxValue = 300 … … 96 98 end 97 99 object Label2: TLabel 98 Left = 4 8100 Left = 46 99 101 Height = 20 100 Top = 22 1102 Top = 222 101 103 Width = 26 102 104 Caption = 'DPI:' … … 105 107 end 106 108 object CheckBoxReopenLastFileOnStart: TCheckBox 107 Left = 360109 Left = 16 108 110 Height = 24 109 Top = 64111 Top = 160 110 112 Width = 181 111 113 Caption = 'Reopen last file on start' 112 114 TabOrder = 8 113 115 end 116 object Bevel1: TBevel 117 Left = 8 118 Height = 2 119 Top = 309 120 Width = 570 121 Anchors = [akLeft, akRight, akBottom] 122 end 114 123 end -
trunk/Forms/UFormSettings.pas
r151 r154 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 Menus, Spin, ULanguages;9 Menus, Spin, ExtCtrls, ULanguages; 10 10 11 11 type … … 14 14 15 15 TFormSettings = class(TForm) 16 Bevel1: TBevel; 16 17 ButtonOk: TButton; 17 18 ButtonCancel: TButton; -
trunk/UAcronym.pas
r152 r154 713 713 NewNode := Node.OwnerDocument.CreateElement('Ref'); 714 714 Node.AppendChild(NewNode); 715 NewNode.TextContent := IntToStr(TImportSource(Items[I]).Id);715 NewNode.TextContent := WideString(IntToStr(TImportSource(Items[I]).Id)); 716 716 end; 717 717 end; … … 725 725 Node2 := Node.FirstChild; 726 726 while Assigned(Node2) and (Node2.NodeName = 'Ref') do begin 727 if TryStrToInt( Node2.TextContent, Id) then begin727 if TryStrToInt(string(Node2.TextContent), Id) then begin 728 728 Source := AcronymDb.ImportSources.SearchById(Id); 729 729 if Assigned(Source) then begin … … 1228 1228 NewNode := Node.OwnerDocument.CreateElement('Ref'); 1229 1229 Node.AppendChild(NewNode); 1230 NewNode.TextContent := IntToStr(TAcronymCategory(Items[I]).Id);1230 NewNode.TextContent := WideString(IntToStr(TAcronymCategory(Items[I]).Id)); 1231 1231 end; 1232 1232 end; … … 1240 1240 Node2 := Node.FirstChild; 1241 1241 while Assigned(Node2) and (Node2.NodeName = 'Ref') do begin 1242 if TryStrToInt( Node2.TextContent, Id) then begin1242 if TryStrToInt(string(Node2.TextContent), Id) then begin 1243 1243 Category := Db.Categories.SearchById(Id); 1244 1244 if Assigned(Category) then begin -
trunk/UCore.lfm
r149 r154 3442 3442 EmailContact = 'robie@centrum.cz' 3443 3443 AppName = 'Acronym Decoder' 3444 ReleaseDate = 4 27143444 ReleaseDate = 43024 3445 3445 RegistryKey = '\Software\' 3446 3446 RegistryRoot = rrKeyCurrentUser
Note:
See TracChangeset
for help on using the changeset viewer.