diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-04-16 11:31:22 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-04-16 11:37:21 -0400 |
| commit | 34178097d559ef522ea0984091489c209f4e9e0e (patch) | |
| tree | 881140c5a4e6e5a00e92956b5da438d44ed92e5c /openbox/resist.c | |
| parent | 262591ec1adc1badfcb36e9e6876dd81f2df9492 (diff) | |
use const Rect* not Rect const*
Diffstat (limited to 'openbox/resist.c')
| -rw-r--r-- | openbox/resist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/resist.c b/openbox/resist.c index 927ee3a0..12f56329 100644 --- a/openbox/resist.c +++ b/openbox/resist.c @@ -136,7 +136,7 @@ void resist_move_windows(ObClient *c, gint resist, gint *x, gint *y) void resist_move_monitors(ObClient *c, gint resist, gint *x, gint *y) { Rect *area; - Rect const *parea; + const Rect *parea; guint i; gint l, t, r, b; /* requested edges */ gint al, at, ar, ab; /* screen area edges */ @@ -325,7 +325,7 @@ void resist_size_monitors(ObClient *c, gint resist, gint *w, gint *h, gint l, t, r, b; /* my left, top, right and bottom sides */ gint dlt, drb; /* my destination left/top and right/bottom sides */ Rect *area; - Rect const *parea; + const Rect *parea; gint al, at, ar, ab; /* screen boundaries */ gint pl, pt, pr, pb; /* physical screen boundaries */ guint i; |
