Changeset 145 for trunk/Packages/Common/JobProgressView.pas
- Timestamp:
- Jun 5, 2023, 6:44:57 PM (18 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/JobProgressView.pas
r144 r145 1 unit UJobProgressView;1 unit JobProgressView; 2 2 3 3 interface … … 5 5 uses 6 6 SysUtils, Variants, Classes, Graphics, Controls, Forms, Syncobjs, 7 Dialogs, ComCtrls, StdCtrls, ExtCtrls, fgl, UThreading, Math,7 Dialogs, ComCtrls, StdCtrls, ExtCtrls, Generics.Collections, Threading, Math, 8 8 DateUtils; 9 9 … … 69 69 end; 70 70 71 TJobs = class(T FPGObjectList<TJob>)71 TJobs = class(TObjectList<TJob>) 72 72 end; 73 73 … … 154 154 end; 155 155 156 //var157 // FormJobProgressView: TFormJobProgressView;158 159 156 procedure Register; 160 157 161 158 resourcestring 162 159 SExecuted = 'Executed'; 160 163 161 164 162 implementation … … 184 182 try 185 183 try 186 //raise Exception.Create('Exception in job');187 184 ProgressView.CurrentJob.Method(Job); 188 185 except
Note:
See TracChangeset
for help on using the changeset viewer.