1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-20 16:55:46 +01:00

- Fixed some compilation problems, which could lead to sigsegv at run time in

the new 'bag' code.
- Fixed PPosition problem.
This commit is contained in:
dan
1999-09-16 21:52:18 +00:00
parent ac4053478a
commit 8747093e64
33 changed files with 36 additions and 36 deletions

View File

@@ -311,12 +311,12 @@ setSizeHints(WMWindow *win)
hints->flags = 0;
if (win->flags.upos_set) {
hints->flags |= USPosition;
hints->flags |= USPosition; /* shouldn't be PPosition ? --Dan */
hints->x = win->upos.x;
hints->y = win->upos.y;
}
if (win->usize.width>0 && win->usize.height>0) {
hints->flags |= USSize;
hints->flags |= USSize; /* shouldn't be PSize ? --Dan */
hints->width = win->usize.width;
hints->height = win->usize.height;
}