diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-11 23:31:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-12 10:25:06 +0800 |
commit | eb29179da623f9cf4abd663577395a085452ca18 (patch) | |
tree | a7eec4690f254d4cb9048ca87a5e7f401a2e74ae /widgets/table/e-table-header.c | |
parent | beb8e74577f695d0d3c2efea52dc10c2136f0135 (diff) | |
download | gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.gz gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.zst gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/table/e-table-header.c')
-rw-r--r-- | widgets/table/e-table-header.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/table/e-table-header.c b/widgets/table/e-table-header.c index 3ff4c3472b..0ec180818e 100644 --- a/widgets/table/e-table-header.c +++ b/widgets/table/e-table-header.c @@ -365,7 +365,7 @@ eth_do_insert (ETableHeader *eth, gint pos, ETableCol *val) memmove (ð->columns [pos+1], ð->columns [pos], sizeof (ETableCol *) * (eth->col_count - pos)); eth->columns [pos] = val; - eth->col_count ++; + eth->col_count++; } /** @@ -639,7 +639,7 @@ e_table_header_move (ETableHeader *eth, gint source_index, gint target_index) g_return_if_fail (target_index < eth->col_count + 1); if (source_index < target_index) - target_index --; + target_index--; old = eth->columns [source_index]; eth_do_remove (eth, source_index, FALSE); @@ -723,7 +723,7 @@ eth_set_size (ETableHeader *eth, gint idx, gint size) min_width += eth->columns[i]->min_width + eth->width_extras; if (eth->columns[i]->resizable) { expansion += eth->columns[i]->expansion; - expandable_count ++; + expandable_count++; } } /* If there's no room for anything, don't change. */ |