From: Dana Jansens Date: Wed, 27 Aug 2003 23:16:06 +0000 (+0000) Subject: oooops RECT_SET_POINT was broken X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=cadab91e522c6426cc79df4f06e7c05232cb0a64;p=chaz%2Fopenbox oooops RECT_SET_POINT was broken --- 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) \