mirror of https://gitlab.com/basile.b/dexed.git
remove dead vars + reimplement dup checker in libman ctor, deleted IDKW
This commit is contained in:
parent
efcba233a6
commit
9ca1326edd
|
@ -322,8 +322,8 @@ end;
|
|||
constructor TLibraryManager.create(aOwner: TComponent);
|
||||
var
|
||||
nme: string;
|
||||
als: string;
|
||||
lib: TLibraryItem;
|
||||
lb2: TLibraryItem;
|
||||
lb1: TLibraryItem;
|
||||
i: integer;
|
||||
begin
|
||||
inherited;
|
||||
|
@ -335,9 +335,14 @@ begin
|
|||
loadFromFile(nme);
|
||||
for i := fCollection.Count-1 downto 0 do
|
||||
begin
|
||||
lib := libraryByIndex[i];
|
||||
als := lib.libAlias.upperCase;
|
||||
lib.updateModulesInfo;
|
||||
lb2 := libraryByIndex[i];
|
||||
lb1 := libraryByAlias[lb2.libAlias];
|
||||
if lb1.isNotNil and (lb1.Index < lb2.Index) then
|
||||
begin
|
||||
fCollection.Delete(i);
|
||||
continue;
|
||||
end;
|
||||
lb2.updateModulesInfo;
|
||||
end;
|
||||
updateItemsByAlias;
|
||||
updateDCD;
|
||||
|
|
|
@ -1003,7 +1003,6 @@ procedure TCEMessagesWidget.filterMessages(aCtxt: TCEAppMessageCtxt);
|
|||
var
|
||||
itm: TTreeNode;
|
||||
i: integer;
|
||||
f: boolean;
|
||||
begin
|
||||
if updating then
|
||||
exit;
|
||||
|
|
Loading…
Reference in New Issue