Changeset 204 for trunk/Forms
- Timestamp:
- May 6, 2019, 2:49:33 PM (6 years ago)
- Location:
- trunk/Forms
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAcronyms.pas
r184 r204 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 Menus, ActnList, UListViewSort, UAcronym, LazUTF8, SpecializedList;9 Menus, ActnList, UListViewSort, UAcronym, LazUTF8, fgl; 10 10 11 11 type … … 52 52 FAcronyms: TAcronyms; 53 53 MeaningCount: Integer; 54 procedure FilterList(List: T ListObject);54 procedure FilterList(List: TFPGObjectList<TObject>); 55 55 procedure SetAcronyms(AValue: TAcronyms); 56 56 procedure UpdateAcronymsList; … … 296 296 end; 297 297 298 procedure TFormAcronyms.FilterList(List: T ListObject);298 procedure TFormAcronyms.FilterList(List: TFPGObjectList<TObject>); 299 299 var 300 300 I: Integer; -
trunk/Forms/UFormCategories.lfm
r203 r204 49 49 Width = 784 50 50 Align = alBottom 51 Caption = 'ToolBar1'52 51 Images = Core.ImageList1 53 52 ParentShowHint = False -
trunk/Forms/UFormCategories.lrj
r203 r204 3 3 {"hash":346165,"name":"tformcategories.listviewcategories.columns[0].caption","sourcebytes":[78,97,109,101],"value":"Name"}, 4 4 {"hash":107848676,"name":"tformcategories.listviewcategories.columns[1].caption","sourcebytes":[85,115,101,100,32,99,111,117,110,116],"value":"Used count"}, 5 {"hash":106991073,"name":"tformcategories.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},6 5 {"hash":18340,"name":"tformcategories.aadd.caption","sourcebytes":[65,100,100],"value":"Add"}, 7 6 {"hash":93079237,"name":"tformcategories.aremove.caption","sourcebytes":[82,101,109,111,118,101],"value":"Remove"}, -
trunk/Forms/UFormCheck.pas
r199 r204 6 6 7 7 uses 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,8 Classes, SysUtils, LazFileUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 9 ExtCtrls, ComCtrls, Menus, ActnList, UAcronym, URegistry, Registry, UCommon, 10 10 fgl; … … 394 394 State := stNone; 395 395 StartIndex := 0; 396 Acronym := ''; 396 397 repeat 397 398 if State = stAcronymUsage then begin -
trunk/Forms/UFormImportFormats.lfm
r203 r204 43 43 Width = 739 44 44 Align = alBottom 45 Caption = 'ToolBar1'46 45 Images = Core.ImageList1 47 46 ParentFont = False -
trunk/Forms/UFormImportFormats.lrj
r203 r204 2 2 {"hash":153070547,"name":"tformimportformats.caption","sourcebytes":[73,109,112,111,114,116,32,102,111,114,109,97,116,115],"value":"Import formats"}, 3 3 {"hash":346165,"name":"tformimportformats.listview1.columns[0].caption","sourcebytes":[78,97,109,101],"value":"Name"}, 4 {"hash":106991073,"name":"tformimportformats.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},5 4 {"hash":18340,"name":"tformimportformats.aadd.caption","sourcebytes":[65,100,100],"value":"Add"}, 6 5 {"hash":93079237,"name":"tformimportformats.aremove.caption","sourcebytes":[82,101,109,111,118,101],"value":"Remove"}, -
trunk/Forms/UFormImportSources.pas
r174 r204 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 ActnList, Menus, UAcronym, UJobProgressView, UListViewSort, SpecializedList, 10 LazUTF8; 9 ActnList, Menus, UAcronym, UJobProgressView, UListViewSort, LazUTF8, fgl; 11 10 12 11 type … … 63 62 private 64 63 procedure ProcessImportJob(Job: TJob); 65 procedure FilterList(List: T ListObject);64 procedure FilterList(List: TFPGObjectList<TObject>); 66 65 public 67 66 ImportSources: TImportSources; … … 297 296 end; 298 297 299 procedure TFormImportSources.FilterList(List: T ListObject);298 procedure TFormImportSources.FilterList(List: TFPGObjectList<TObject>); 300 299 var 301 300 I: Integer; -
trunk/Forms/UFormMain.pas
r200 r204 9 9 ComCtrls, StdCtrls, ExtCtrls, ActnList, Grids, UAcronym, UPersistentForm, 10 10 URegistry, ULastOpenedList, UListViewSort, UJobProgressView, 11 Registry, SpecializedList, LazUTF8, LazFileUtils;11 Registry, fgl, LazUTF8, LazFileUtils; 12 12 13 13 type … … 151 151 function FilterCell(Text1, Text2: string): Boolean; 152 152 procedure ProcessImportsJob(Job: TJob); 153 procedure FilterList(List: T ListObject);153 procedure FilterList(List: TFPGObjectList<TObject>); 154 154 procedure OpenRecentClick(Sender: TObject); 155 155 procedure SetToolbarHints; … … 655 655 end; 656 656 657 procedure TFormMain.FilterList(List: T ListObject);657 procedure TFormMain.FilterList(List: TFPGObjectList<TObject>); 658 658 var 659 659 I: Integer;
Note:
See TracChangeset
for help on using the changeset viewer.