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/place.c | |
| parent | 262591ec1adc1badfcb36e9e6876dd81f2df9492 (diff) | |
use const Rect* not Rect const*
Diffstat (limited to 'openbox/place.c')
| -rw-r--r-- | openbox/place.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/place.c b/openbox/place.c index 836c215d..c39d5069 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -107,7 +107,7 @@ static Rect **pick_head(ObClient *c) screen_pointer_pos(&px, &py); for (i = 0; i < screen_num_monitors; i++) { - Rect const *monitor = screen_physical_area_monitor(i); + const Rect *monitor = screen_physical_area_monitor(i); gboolean contain = RECT_CONTAINS(*monitor, px, py); if (contain) { add_choice(choice, i); |
