aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-header.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-07-19 02:05:05 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-07-19 02:05:38 +0800
commitdcf2c0e754d6e251733cea74c2427738122620af (patch)
tree358d2c639c2a5b5cf5fc8f28c515076f8b4d4e5d /widgets/table/e-table-header.c
parent76fc1247ba88575c0f6e0040672e19e66f53da4f (diff)
downloadgsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.gz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.bz2
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.lz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.xz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.zst
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.zip
More whitespace cleanup.
Diffstat (limited to 'widgets/table/e-table-header.c')
-rw-r--r--widgets/table/e-table-header.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/table/e-table-header.c b/widgets/table/e-table-header.c
index 37a1e3c332..1016acf5c0 100644
--- a/widgets/table/e-table-header.c
+++ b/widgets/table/e-table-header.c
@@ -172,7 +172,7 @@ eth_finalize (GObject *object)
/*
* Destroy columns
*/
- for (i = cols - 1; i >= 0; i--){
+ for (i = cols - 1; i >= 0; i--) {
eth_do_remove (eth, i, TRUE);
}
g_free (eth->columns);
@@ -348,7 +348,7 @@ eth_update_offsets (ETableHeader *eth)
gint i;
gint x = 0;
- for (i = 0; i < eth->col_count; i++){
+ for (i = 0; i < eth->col_count; i++) {
ETableCol *etc = eth->columns [i];
etc->x = x;
@@ -505,7 +505,7 @@ e_table_header_get_index_at (ETableHeader *eth, gint x_offset)
g_return_val_if_fail (E_IS_TABLE_HEADER (eth), 0);
total = 0;
- for (i = 0; i < eth->col_count; i++){
+ for (i = 0; i < eth->col_count; i++) {
total += eth->columns [i]->width;
if (x_offset < total)
@@ -560,7 +560,7 @@ e_table_header_get_selected (ETableHeader *eth)
g_return_val_if_fail (eth != NULL, 0);
g_return_val_if_fail (E_IS_TABLE_HEADER (eth), 0);
- for (i = 0; i < eth->col_count; i++){
+ for (i = 0; i < eth->col_count; i++) {
if (eth->columns [i]->selected)
selected++;
}
@@ -728,7 +728,7 @@ eth_set_size (ETableHeader *eth, gint idx, gint size)
/* (1) If none of the columns to the right are expandable, use
* all the expansion space in this column.
*/
- if(expandable_count == 0) {
+ if (expandable_count == 0) {
eth->columns[idx]->expansion = expansion;
for (i = idx + 1; i < eth->col_count; i++) {
eth->columns[i]->expansion = 0;
@@ -827,7 +827,7 @@ e_table_header_col_diff (ETableHeader *eth, gint start_col, gint end_col)
end_col = eth->col_count;
total = 0;
- for (col = start_col; col < end_col; col++){
+ for (col = start_col; col < end_col; col++) {
total += eth->columns [col]->width;
}