Ignore:
Timestamp:
Apr 8, 2022, 9:43:55 PM (2 years ago)
Author:
chronos
Message:
  • Modified: Use Generics.Collection instead of fgl for better Delphi compatibility.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormProperties.pas

    r127 r128  
    55uses
    66  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
    7   Menus, ActnList, UContact, UDataFile, UListViewSort, fgl, LazUTF8;
     7  Menus, ActnList, UContact, UDataFile, UListViewSort, LazUTF8,
     8  Generics.Collections;
    89
    910type
     
    6465    FProperties: TContactProperties;
    6566    FUpdateCount: Integer;
    66     procedure FilterList(List: TFPGObjectList<TObject>);
     67    procedure FilterList(List: TObjectList<TObject>);
    6768    procedure SetProperties(AValue: TContactProperties);
    6869    procedure DoUpdateInterface;
     
    167168end;
    168169
    169 procedure TFormProperties.FilterList(List: TFPGObjectList<TObject>);
     170procedure TFormProperties.FilterList(List: TObjectList<TObject>);
    170171var
    171172  I: Integer;
Note: See TracChangeset for help on using the changeset viewer.