mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-22 06:09:09 -04:00
Fix Some gcc warnings 383 to 208 lines
Left explicit #warning and deprecated. Some lines are wrong indented and produce mal formed code.
This commit is contained in:
parent
74aa55e347
commit
674b6de381
63 changed files with 379 additions and 346 deletions
|
@ -253,7 +253,7 @@ void xProgressBar::paint()
|
|||
//loop through all chunks represented by the pixel at position i and count the completed chunks
|
||||
//if no incomplete chunk is encountered in this range, continue to count the row of completed chunks
|
||||
//to see whether more than 1 pixel can be drawn at once.
|
||||
for(j=first_chunk_in_pixel;((j<=last_chunk_in_pixel) || (all_done && (j<ss)));++j)
|
||||
for(j=first_chunk_in_pixel;((j<=last_chunk_in_pixel) || (all_done && (j<(int)ss)));++j)
|
||||
if (_pinfo.cmap[j])
|
||||
++c;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue