Ignore:
Timestamp:
Jun 5, 2023, 7:40:45 PM (12 months ago)
Author:
chronos
Message:
  • Modified: Update Common and VCard package. Remove U prefix from unit names.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/ListViewSort.pas

    r147 r148  
    1 unit UListViewSort;
     1unit ListViewSort;
    22
    33// Date: 2019-05-17
     
    66
    77uses
    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;
    1211
    1312type
     
    1817  TCompareEvent = function (Item1, Item2: TObject): Integer of object;
    1918  TListFilterEvent = procedure (ListViewSort: TListViewSort) of object;
     19
     20  TObjects = TObjectList<TObject>;
    2021
    2122  { TListViewSort }
     
    148149destructor TListViewEx.Destroy;
    149150begin
    150   inherited Destroy;
     151  inherited;
    151152end;
    152153
Note: See TracChangeset for help on using the changeset viewer.