Mercurial > hg > xemacs-beta
comparison src/toolbar-msw.c @ 5934:e2fae7783046 cygwin
lots of use of EMACS_INT, a few others, to eliminate all pointer truncation warnings
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sat, 12 Dec 2015 19:08:46 +0000 |
parents | 68639fb08af8 |
children |
comparison
equal
deleted
inserted
replaced
5933:c1e8f3294298 | 5934:e2fae7783046 |
---|---|
123 | 123 |
124 int nbuttons=0; | 124 int nbuttons=0; |
125 int shadow_thickness = 2; /* get this from somewhere else? */ | 125 int shadow_thickness = 2; /* get this from somewhere else? */ |
126 int window_frame_width = 3; | 126 int window_frame_width = 3; |
127 int padding = (border_width + shadow_thickness) * 2; | 127 int padding = (border_width + shadow_thickness) * 2; |
128 unsigned int checksum=0; | 128 uintptr_t checksum=0; |
129 struct window *w = XWINDOW (window); | 129 struct window *w = XWINDOW (window); |
130 TBBUTTON *button_tbl, *tbbutton; | 130 TBBUTTON *button_tbl, *tbbutton; |
131 HIMAGELIST ilist=NULL; | 131 HIMAGELIST ilist=NULL; |
132 HWND toolbarwnd=NULL; | 132 HWND toolbarwnd=NULL; |
133 | 133 |