Changeset 148 for trunk/Packages/Common/ListViewSort.pas
- Timestamp:
- Jun 5, 2023, 7:40:45 PM (18 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/ListViewSort.pas
r147 r148 1 unit UListViewSort;1 unit ListViewSort; 2 2 3 3 // Date: 2019-05-17 … … 6 6 7 7 uses 8 {$IFDEF Windows}Windows, CommCtrl, LMessages, {$ENDIF}Classes, Graphics, 9 ComCtrls, SysUtils, Controls, DateUtils, Dialogs, Forms, Grids, StdCtrls, 10 ExtCtrls, UCommon, LclIntf, LclType, LResources, Generics.Collections, 11 Generics.Defaults; 8 {$IFDEF Windows}Windows, CommCtrl, LMessages, {$ENDIF}Classes, Graphics, ComCtrls, SysUtils, 9 Controls, DateUtils, Dialogs, Forms, Grids, StdCtrls, ExtCtrls, 10 LclIntf, LclType, LResources, Generics.Collections, Generics.Defaults; 12 11 13 12 type … … 18 17 TCompareEvent = function (Item1, Item2: TObject): Integer of object; 19 18 TListFilterEvent = procedure (ListViewSort: TListViewSort) of object; 19 20 TObjects = TObjectList<TObject>; 20 21 21 22 { TListViewSort } … … 148 149 destructor TListViewEx.Destroy; 149 150 begin 150 inherited Destroy;151 inherited; 151 152 end; 152 153
Note:
See TracChangeset
for help on using the changeset viewer.