# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 994426598 0 # Node ID 156281539fb35c695f53511d752110055da0d6ce # Parent 26e2130135b9e1791a890ad7a8971f626f176c8d Fixed misdeclaration in dw_menu_item_set_check(), id was int should be unsigned long. diff -r 26e2130135b9 -r 156281539fb3 dw.h --- a/dw.h Fri Jul 06 13:32:57 2001 +0000 +++ b/dw.h Fri Jul 06 13:36:38 2001 +0000 @@ -647,7 +647,7 @@ HMENUI dw_menu_new(unsigned long id); HMENUI dw_menubar_new(HWND location); HWND dw_menu_append_item(HMENUI menu, char *title, unsigned long id, unsigned long flags, int end, int check, HMENUI submenu); -void dw_menu_item_set_check(HMENUI menu, int id, int check); +void dw_menu_item_set_check(HMENUI menu, unsigned long id, int check); void dw_menu_popup(HMENUI *menu, HWND parent, int x, int y); void dw_menu_destroy(HMENUI *menu); void dw_pointer_query_pos(long *x, long *y);