Changeset 315 for trunk/Packages/Common/JobProgressView.pas
- Timestamp:
- Jun 19, 2024, 11:15:44 PM (5 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/JobProgressView.pas
r314 r315 1 unit UJobProgressView; 2 3 {$MODE Delphi} 1 unit JobProgressView; 4 2 5 3 interface … … 7 5 uses 8 6 SysUtils, Variants, Classes, Graphics, Controls, Forms, Syncobjs, 9 Dialogs, ComCtrls, StdCtrls, ExtCtrls, fgl, UThreading, Math,7 Dialogs, ComCtrls, StdCtrls, ExtCtrls, Generics.Collections, Threading, Math, 10 8 DateUtils; 11 9 … … 71 69 end; 72 70 73 TJobs = class(T FPGObjectList<TJob>)71 TJobs = class(TObjectList<TJob>) 74 72 end; 75 73 … … 156 154 end; 157 155 158 //var159 // FormJobProgressView: TFormJobProgressView;160 161 156 procedure Register; 162 157 163 158 resourcestring 164 159 SExecuted = 'Executed'; 160 165 161 166 162 implementation … … 186 182 try 187 183 try 188 //raise Exception.Create('Exception in job');189 184 ProgressView.CurrentJob.Method(Job); 190 185 except … … 642 637 begin 643 638 FLock.Free; 644 inherited Destroy;639 inherited; 645 640 end; 646 641
Note:
See TracChangeset
for help on using the changeset viewer.