]> Dogcows Code - chaz/openbox/commitdiff
fix formatting
authorDana Jansens <danakj@orodu.net>
Sun, 27 May 2007 16:35:44 +0000 (16:35 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 27 May 2007 16:35:44 +0000 (16:35 +0000)
openbox/frame.c

index b6b6ac9322a9e4d4a1b057136448c65e04238e3f..b0f789aa2e67d5c5e026ff1c3b82b12f5fa77318 100644 (file)
@@ -1343,7 +1343,8 @@ void frame_client_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
     case SouthEastGravity:
     case EastGravity:
         /* the right side of the client will be the right side of the frame */
-        *x -= self->size.right + self->size.left - self->client->border_width*2;
+        *x -= self->size.right + self->size.left -
+            self->client->border_width * 2;
         break;
 
     case ForgetGravity:
@@ -1372,7 +1373,8 @@ void frame_client_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
     case SouthEastGravity:
     case SouthGravity:
         /* the bottom of the client will be the bottom of the frame */
-        *y -= self->size.bottom + self->size.top - self->client->border_width*2;
+        *y -= self->size.bottom + self->size.top -
+            self->client->border_width * 2;
         break;
 
     case ForgetGravity:
@@ -1402,7 +1404,8 @@ void frame_frame_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
     case EastGravity:
     case SouthEastGravity:
         /* the right side of the client will be the right side of the frame */
-        *x += self->size.right + self->size.left - self->client->border_width*2;
+        *x += self->size.right + self->size.left -
+            self->client->border_width * 2;
         break;
     case StaticGravity:
     case ForgetGravity:
@@ -1428,7 +1431,8 @@ void frame_frame_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
     case SouthGravity:
     case SouthEastGravity:
         /* the bottom of the client will be the bottom of the frame */
-        *y += self->size.bottom + self->size.top - self->client->border_width*2;
+        *y += self->size.bottom + self->size.top -
+            self->client->border_width * 2;
         break;
     case StaticGravity:
     case ForgetGravity:
This page took 0.023683 seconds and 4 git commands to generate.