CProgressBar: remove comment

This commit is contained in:
2013-08-28 20:39:46 +02:00
parent 5e666dcdd5
commit eee3b5d78e

View File

@@ -252,7 +252,7 @@ void CProgressBar::paintAdvanced()
}
}
for(i = maxi; i < total; i++) {
for (j = 0; j < hcnt; j++) {//TODO: use shape cc-item
for (j = 0; j < hcnt; j++) {
int sh_x = pb_x + i * itemw;
int sh_y = py + j * itemh;
paintShapes(sh_x, sh_y, pointx, pointy, pb_passive_col); //fill passive
@@ -288,5 +288,6 @@ void CProgressBar::paintProgress(bool do_save_bg)
void CProgressBar::paint(bool do_save_bg)
{
paintProgress(do_save_bg);
}