Changeset 11986 in osm
- Timestamp:
- 2008-11-19T18:16:40+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/webkit-image.cpp
r11394 r11986 43 43 for(int y = 0; iswhite && y < ysize; ++y) 44 44 { 45 if(im.pixel(x, y) != white) 45 QRgb p = im.pixel(x, y); 46 if(p != white && p) 46 47 iswhite = false; 47 48 } … … 54 55 for(int x = 0; iswhite && x < xsize; ++x) 55 56 { 56 if(im.pixel(x, y) != white) 57 QRgb p = im.pixel(x, y); 58 if(p != white && p) 57 59 iswhite = false; 58 60 }
Note:
See TracChangeset
for help on using the changeset viewer.