listbox: ownerdraw fix

Dimitrie O. Paun dpaun at rogers.com
Mon Nov 17 09:33:33 CST 2003


On November 17, 2003 10:16 am, Huw D M Davies wrote:
> +    if (LISTBOX_GetItemRect( descr, index, &rect ) == 1)

OK, I very sorry to nick pick so much, but this test is not
only strange in C, but it's a bit dangerous as well, since
in the future LISTBOX_GetItemRect may return something >1
for TRUE, and things will break silently. Why not the more
common:
    if (LISTBOX_GetItemRect( descr, index, &rect ))

-- 
Dimi.




More information about the wine-devel mailing list