mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:58:06 +02:00
Codetools: Fixed AV in "Project -> Show Used PPU Files" when sorting by double-clicking on last three columns. Patch by n7800, issue #40984.
This commit is contained in:
parent
9f98ea7602
commit
60e0038353
@ -135,7 +135,7 @@ type
|
||||
FIdleConnected: boolean;
|
||||
FSearchingItems: TAvlTree; // tree of TPPUDlgListItem sorted for TheUnitName
|
||||
FItems: TAvlTree; // tree of TPPUDlgListItem sorted for TheUnitName
|
||||
FSort: array[1..3] of TPPUListSortRec;
|
||||
FSort: array[1..6] of TPPUListSortRec;
|
||||
FDlgLinkedFiles: TAvlTree; // tree of TPPUDlgLinkedFile sorted for ID, file, flags
|
||||
procedure SetProject(const AValue: TLazProject);
|
||||
procedure SetIdleConnected(const AValue: boolean);
|
||||
@ -265,6 +265,9 @@ begin
|
||||
FSort[1].Category:=plsOSize;
|
||||
FSort[2].Category:=plsName;
|
||||
FSort[3].Category:=plsPPUSize;
|
||||
FSort[4].Category:=plsUsedByCount;
|
||||
FSort[5].Category:=plsUsesCount;
|
||||
FSort[6].Category:=plsPackage;
|
||||
|
||||
PageControl1.PageIndex:=0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user