aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-11 23:50:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:14:04 +0800
commitebcce86769d174cce6e881740c5e9bcedce28e06 (patch)
treeb2cc2d18ceb0c3bd3e78f5b768c1b6926b69bb4a /widgets/table/e-table-utils.c
parent1e3deb31476cf0026011876327be83e9a47847ee (diff)
downloadgsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.gz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.bz2
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.lz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.xz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.zst
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'widgets/table/e-table-utils.c')
-rw-r--r--widgets/table/e-table-utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/table/e-table-utils.c b/widgets/table/e-table-utils.c
index 2f4939edcb..57878722b8 100644
--- a/widgets/table/e-table-utils.c
+++ b/widgets/table/e-table-utils.c
@@ -88,11 +88,11 @@ et_col_spec_to_col (ETableColumnSpecification *col_spec,
ETableSearchFunc search = NULL;
if (col_spec->cell)
- cell = e_table_extras_get_cell(ete, col_spec->cell);
+ cell = e_table_extras_get_cell (ete, col_spec->cell);
if (col_spec->compare)
- compare = e_table_extras_get_compare(ete, col_spec->compare);
+ compare = e_table_extras_get_compare (ete, col_spec->compare);
if (col_spec->search)
- search = e_table_extras_get_search(ete, col_spec->search);
+ search = e_table_extras_get_search (ete, col_spec->search);
if (cell && compare) {
gchar *title = dgettext (domain, col_spec->title);
@@ -184,7 +184,7 @@ e_table_util_calculate_current_search_col (ETableHeader *header,
ETableCol *col = NULL;
count = e_table_sort_info_grouping_get_count (sort_info);
for (i = 0; i < count; i++) {
- ETableSortColumn column = e_table_sort_info_grouping_get_nth(sort_info, i);
+ ETableSortColumn column = e_table_sort_info_grouping_get_nth (sort_info, i);
col = e_table_header_get_column (full_header, column.column);
@@ -197,7 +197,7 @@ e_table_util_calculate_current_search_col (ETableHeader *header,
if (col == NULL) {
count = e_table_sort_info_sorting_get_count (sort_info);
for (i = 0; i < count; i++) {
- ETableSortColumn column = e_table_sort_info_sorting_get_nth(sort_info, i);
+ ETableSortColumn column = e_table_sort_info_sorting_get_nth (sort_info, i);
col = e_table_header_get_column (full_header, column.column);