comparison lwlib/lwlib-Xaw.c @ 11462:b3c30d040767

(xaw_pop_instance): Make x, y, w, h unsigned.
author Richard M. Stallman <rms@gnu.org>
date Sat, 15 Apr 1995 18:34:01 +0000
parents 04ad11fb0a0f
children ee40177f6c68
comparison
equal deleted inserted replaced
11461:65c12e57f119 11462:b3c30d040767
218 /* Center the widget in its parent. Why isn't this kind of crap 218 /* Center the widget in its parent. Why isn't this kind of crap
219 done automatically? I thought toolkits were supposed to make 219 done automatically? I thought toolkits were supposed to make
220 life easier? 220 life easier?
221 */ 221 */
222 { 222 {
223 int x, y, w, h; 223 unsigned int x, y, w, h;
224 Widget topmost = instance->parent; 224 Widget topmost = instance->parent;
225 Arg args[2]; 225 Arg args[2];
226 226
227 w = shell->core.width; 227 w = shell->core.width;
228 h = shell->core.height; 228 h = shell->core.height;