mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-29 05:25:51 +00:00
Correct signedness of window parameters used in XParseGeometry.
Signed x, y, Unsigned width, height. modified: xinit.c modified: xlspwin.c modified: xrdopt.c
This commit is contained in:
@@ -72,11 +72,11 @@ int Byte_Order, Bitmap_Bit_Order, Bitmap_Pad, Default_Depth, Display_Height, Dis
|
||||
|
||||
int LispWindowRequestedX = 0;
|
||||
int LispWindowRequestedY = 0;
|
||||
int LispWindowRequestedWidth = DEF_WIN_WIDTH;
|
||||
int LispWindowRequestedHeight = DEF_WIN_HEIGHT;
|
||||
unsigned LispWindowRequestedWidth = DEF_WIN_WIDTH;
|
||||
unsigned LispWindowRequestedHeight = DEF_WIN_HEIGHT;
|
||||
|
||||
int LispDisplayRequestedX, LispDisplayRequestedY, LispDisplayRequestedWidth,
|
||||
LispDisplayRequestedHeight;
|
||||
int LispDisplayRequestedX, LispDisplayRequestedY;
|
||||
unsigned LispDisplayRequestedWidth, LispDisplayRequestedHeight;
|
||||
|
||||
Colormap Colors;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user