theme: Properly indent code

s/tabs/spaces/

https://bugzilla.gnome.org/show_bug.cgi?id=662962
This commit is contained in:
Jasper St. Pierre 2012-03-01 00:59:06 -05:00
parent 381ef5c683
commit 895a3d1f39

View File

@ -932,7 +932,6 @@ meta_frame_layout_calc_geometry (const MetaFrameLayout *layout,
else else
g_memmove (&(rect->clickable), &(rect->visible), sizeof(rect->clickable)); g_memmove (&(rect->clickable), &(rect->visible), sizeof(rect->clickable));
x = rect->visible.x + rect->visible.width + layout->button_border.right; x = rect->visible.x + rect->visible.width + layout->button_border.right;
if (left_buttons_has_spacer[i]) if (left_buttons_has_spacer[i])
x += (button_width * 0.75); x += (button_width * 0.75);
@ -4016,8 +4015,7 @@ meta_draw_op_draw_with_env (const MetaDrawOp *op,
d_rect.height = parse_size_unchecked (op->data.op_list.height, env); d_rect.height = parse_size_unchecked (op->data.op_list.height, env);
meta_draw_op_list_draw_with_style (op->data.op_list.op_list, meta_draw_op_list_draw_with_style (op->data.op_list.op_list,
style_gtk, cr, info, style_gtk, cr, info, d_rect);
d_rect);
} }
break; break;
@ -4054,8 +4052,7 @@ meta_draw_op_draw_with_env (const MetaDrawOp *op,
while (tile.y < (ry + rheight)) while (tile.y < (ry + rheight))
{ {
meta_draw_op_list_draw_with_style (op->data.tile.op_list, meta_draw_op_list_draw_with_style (op->data.tile.op_list,
style_gtk, cr, info, style_gtk, cr, info, tile);
tile);
tile.y += tile.height; tile.y += tile.height;
} }