Changeset 86 for trunk/UTrack.pas


Ignore:
Timestamp:
Jun 21, 2022, 5:04:48 PM (23 months ago)
Author:
chronos
Message:
  • Fixed: Calculation of tracks end.
  • Modified: Updated Common package to version 0.10.
  • Modified: Build with Lazarus 2.2.2.
  • Modified: Used Generics.Collections instead of fgl for generic lists.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTrack.pas

    r59 r86  
    11unit UTrack;
    2 
    3 {$mode delphi}
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, fgl;
     6  Classes, SysUtils, Generics.Collections;
    97
    108type
     
    2826  { TTrackPoints }
    2927
    30   TTrackPoints = class(TFPGObjectList<TTrackPoint>)
     28  TTrackPoints = class(TObjectList<TTrackPoint>)
    3129  end;
    3230
     
    4240  { TTrackLinks }
    4341
    44   TTrackLinks = class(TFPGObjectList<TTrackLink>)
     42  TTrackLinks = class(TObjectList<TTrackLink>)
    4543    function SearchPoints(Point1, Point2: TTrackPoint): TTrackLink;
    4644  end;
Note: See TracChangeset for help on using the changeset viewer.