]> Dogcows Code - chaz/openbox/commitdiff
oooops RECT_SET_POINT was broken
authorDana Jansens <danakj@orodu.net>
Wed, 27 Aug 2003 23:16:06 +0000 (23:16 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 27 Aug 2003 23:16:06 +0000 (23:16 +0000)
openbox/geom.h

index ed24f62bd89509a6743904316284947f410e2201..e20c660a70cc494ddb873abdbcc1d1bd4016fc9d 100644 (file)
@@ -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) \
This page took 0.027446 seconds and 4 git commands to generate.