Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7521 → Rev 7525

/programs/cmm/browser/download_manager.h
78,10 → 78,11
default:
if (!downloader.MonitorProgress()) break;
pb.max = downloader.httpd.content_length;
if (pb.value != downloader.httpd.content_received)
pb.max = downloader.httpd.content_length / 100;
EDI = downloader.httpd.content_received/100;
if (pb.value != EDI)
{
pb.value = downloader.httpd.content_received;
pb.value = EDI;
progressbar_draw stdcall(#pb);
DrawDownloading();
}
154,6 → 155,7
DL_Draw_Window();
}
 
/*
struct TIME
{
dword old;
180,6 → 182,7
}
else time.old = time.cur;
}
*/
void DrawDownloading()
{