diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-27 23:16:06 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-27 23:16:06 +0000 |
| commit | cadab91e522c6426cc79df4f06e7c05232cb0a64 (patch) | |
| tree | d7d9a63218f53e000e790fac216cbe11f5b57fbe /openbox | |
| parent | 56cc3dc663372c2f9e4f20b5037faafa7fa72334 (diff) | |
oooops RECT_SET_POINT was broken
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/geom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/geom.h b/openbox/geom.h index ed24f62b..e20c660a 100644 --- a/openbox/geom.h +++ b/openbox/geom.h @@ -23,7 +23,7 @@ typedef struct _Rect { } Rect; #define RECT_SET_POINT(r, nx, ny) \ - (r).x = (ny), (r).y = (ny) + (r).x = (nx), (r).y = (ny) #define RECT_SET_SIZE(r, w, h) \ (r).width = (w), (r).height = (h) #define RECT_SET(r, nx, ny, w, h) \ |
