indenting

This commit is contained in:
Dana Jansens 2003-10-10 08:28:18 +00:00
parent 1be38a0418
commit c8678108eb

View file

@ -3024,7 +3024,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
my_edge_end = c->frame->area.x + c->frame->area.width;
my_offset = c->frame->area.y;
dest = a->y; /* default: top of screen */
/* default: top of screen */
dest = a->y;
for(it = g_list_first(client_list); it; it = it->next) {
int his_edge_start, his_edge_end, his_offset;
@ -3064,7 +3065,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
my_edge_end = c->frame->area.x + c->frame->area.width;
my_offset = c->frame->area.y + c->frame->area.height;
dest = a->y + a->height; /* default: bottom of screen */
/* default: bottom of screen */
dest = a->y + a->height;
for(it = g_list_first(client_list); it; it = it->next) {
int his_edge_start, his_edge_end, his_offset;
@ -3105,7 +3107,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
my_edge_end = c->frame->area.y + c->frame->area.height;
my_offset = c->frame->area.x;
dest = a->x; /* default: leftmost egde of screen */
/* default: leftmost egde of screen */
dest = a->x;
for(it = g_list_first(client_list); it; it = it->next) {
int his_edge_start, his_edge_end, his_offset;
@ -3146,7 +3149,8 @@ int client_directional_edge_search(ObClient *c, ObDirection dir)
my_edge_end = c->frame->area.y + c->frame->area.height;
my_offset = c->frame->area.x + c->frame->area.width;
dest = a->x + a->width; /* default: rightmost edge of screen */
/* default: rightmost edge of screen */
dest = a->x + a->width;
for(it = g_list_first(client_list); it; it = it->next) {
int his_edge_start, his_edge_end, his_offset;