changeset 13:156281539fb3

Fixed misdeclaration in dw_menu_item_set_check(), id was int should be unsigned long.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 06 Jul 2001 13:36:38 +0000
parents 26e2130135b9
children 176cee043f1b
files dw.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);