Ignore:
Timestamp:
May 30, 2023, 11:31:10 AM (11 months ago)
Author:
chronos
Message:
  • Modified: Removed U prefix from unit names.
File:
1 edited

Legend:

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

    r447 r456  
    3535implementation
    3636
    37 constructor TStopWatch.Create(const startOnCreate : Boolean = False) ;
     37constructor TStopWatch.Create(const startOnCreate : boolean = false) ;
    3838begin
    3939  inherited Create;
     
    7272begin
    7373  dt := ElapsedMiliseconds / MSecsPerSec / SecsPerDay;
    74   Result := Format('%d days, %s', [Trunc(dt), FormatDateTime('hh:nn:ss.z', Frac(dt))]) ;
     74  result := Format('%d days, %s', [Trunc(dt), FormatDateTime('hh:nn:ss.z', Frac(dt))]) ;
    7575end;
    7676
     
    9393
    9494end.
    95 
Note: See TracChangeset for help on using the changeset viewer.