I changed unsigned int to just int for window width because it

confused some comparitions and while other widths use int.. hope
that won't cause bugs.
This commit is contained in:
id
2000-11-22 07:36:48 +00:00
parent 527bbcf271
commit 9d44d6c177
2 changed files with 85 additions and 30 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ typedef struct WStacking {
typedef struct _WCoreWindow {
Window window;
unsigned int width; /* size of the window */
unsigned int height;
int width; /* size of the window */
int height;
WScreen *screen_ptr; /* ptr to screen of the window */
WObjDescriptor descriptor;