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/frame.c | |
| parent | 262591ec1adc1badfcb36e9e6876dd81f2df9492 (diff) | |
use const Rect* not Rect const*
Diffstat (limited to 'openbox/frame.c')
| -rw-r--r-- | openbox/frame.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/frame.c b/openbox/frame.c index f6304f5d..f4a29289 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -1677,7 +1677,9 @@ static gboolean frame_animate_iconify(gpointer p) if (self->client->icon_geometry.width == 0) { /* there is no icon geometry set so just go straight down */ - Rect const *a = screen_physical_area_monitor(screen_find_monitor(&self->area)); + const Rect *a; + + a = screen_physical_area_monitor(screen_find_monitor(&self->area)); iconx = self->area.x + self->area.width / 2 + 32; icony = a->y + a->width; iconw = 64; |
