Changeset 28 for trunk/Forms/UFormMain.pas
- Timestamp:
- Jul 12, 2016, 4:28:22 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.pas
r27 r28 119 119 FormMain: TFormMain; 120 120 121 resourcestring 122 SAddedCount = 'Imported %d acronyms'; 123 124 121 125 implementation 122 126 … … 252 256 var 253 257 I: Integer; 254 begin 255 for I := 0 to AcronymDb.ImportSources.Count - 1 do 258 TotalItemCount: Integer; 259 begin 260 TotalItemCount := 0; 261 for I := 0 to AcronymDb.ImportSources.Count - 1 do begin 256 262 TImportSource(AcronymDb.ImportSources[I]).Process; 263 TotalItemCount := TotalItemCount + TImportSource(AcronymDb.ImportSources[I]).ItemCount; 264 end; 265 ShowMessage(Format(SAddedCount, [TotalItemCount])); 257 266 UpdateAcronymsList; 258 267 UpdateInterface;
Note:
See TracChangeset
for help on using the changeset viewer.