Ignore:
Timestamp:
Nov 19, 2012, 2:31:00 PM (12 years ago)
Author:
chronos
Message:
  • Modified: Confused TRegistryEx property Context with Context parameter in some methods.
  • Fixed: TURI path was not properly handled in case of file in root directory.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/USyncCounter.pas

    r432 r434  
    2323    constructor Create;
    2424    destructor Destroy; override;
     25    procedure Assign(Source: TSyncCounter);
    2526  end;
    2627
     
    7172end;
    7273
     74procedure TSyncCounter.Assign(Source: TSyncCounter);
     75begin
     76  Current := Source.Current;
     77  Top := Source.Top;
     78end;
     79
    7380end.
    7481
Note: See TracChangeset for help on using the changeset viewer.