Changeset 81


Ignore:
Timestamp:
Jan 13, 2007, 5:20:05 PM (18 years ago)
Author:
alloc
Message:
 
Location:
oup/current
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • oup/current/Helper_LevelDB.pas

    r58 r81  
    263263    if ((i mod 10) = 0) and (i >= 100) then
    264264      lbl_estimation.Caption := 'Estimated time left: ' + TimeToStr(
    265         (Time - begintime) / i * (progress.Max - i + 1) * 1.1 );
     265        (Time - begintime) / i * (progress.Max - i + 1) * 1.1, timeformat );
    266266    progress.Position := i + 1;
    267267    lbl_progress.Caption := 'Files done: ' + IntToStr(i + 1) + '/' + IntToStr(progress.Max);
     
    533533    if ((i mod 10) = 0) and (i >= 100) then
    534534      lbl_estimation.Caption := 'Estimated time left: ' + TimeToStr(
    535         (Time - begintime) / i * (progress.Max - i + 1) * 1.1 );
     535        (Time - begintime) / i * (progress.Max - i + 1) * 1.1, timeformat );
    536536    progress.Position := i;
    537537    lbl_progress.Caption := 'Files done: ' + IntToStr(i) + '/' + IntToStr(progress.Max);
Note: See TracChangeset for help on using the changeset viewer.