1 Nov
2025
1 Nov
'25
5:21 p.m.
Esme Povirk (@madewokherd) commented about dlls/sane.ds/ui.c:
tpl->cx = ctl_cx; } + if (class == 0x0085 && 0!=(styles & CBS_DROPDOWNLIST))
This way of checking a flag confuses me. I'd be OK with `(var & FLAG) != 0`, `!!(var & FLAG)`, or even just `(var & FLAG)`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9328#note_120357