]> Dogcows Code - chaz/openbox/blobdiff - openbox/frame.c
use const Rect* not Rect const*
[chaz/openbox] / openbox / frame.c
index f6304f5d1340651006fe202dc3e453c715519ce1..f4a29289dc9b204f1a089061a263349e3e0b330e 100644 (file)
@@ -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;
This page took 0.019695 seconds and 4 git commands to generate.