Migliorato calcolo tempo previsto

git-svn-id: svn://10.65.10.50/branches/R_10_00@22720 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2012-09-07 14:51:26 +00:00
parent f498fdfba2
commit 375682c5ee

View File

@ -265,12 +265,12 @@ TProgind::TProgind(long max, const char* txt, bool cancel, bool bar, int div)
bool TProgind::setstatus(long l)
{
const bool ok = TIndwin::setstatus(l);
if (ok && clock() > _next_update)
const clock_t c = clock();
if (ok && c > _next_update)
{
update();
do_events();
_next_update = clock()+CLOCKS_PER_SEC; // Prossimo aggiornamento tra un secondo
_next_update = c+CLOCKS_PER_SEC; // Prossimo aggiornamento tra un secondo
}
return ok;