aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-without.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-07-11 23:31:15 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-12 10:25:06 +0800
commiteb29179da623f9cf4abd663577395a085452ca18 (patch)
treea7eec4690f254d4cb9048ca87a5e7f401a2e74ae /widgets/table/e-table-without.c
parentbeb8e74577f695d0d3c2efea52dc10c2136f0135 (diff)
downloadgsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.gz
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.bz2
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.lz
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.xz
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.zst
gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/table/e-table-without.c')
-rw-r--r--widgets/table/e-table-without.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/table/e-table-without.c b/widgets/table/e-table-without.c
index f1f6a88b31..b19bdeb615 100644
--- a/widgets/table/e-table-without.c
+++ b/widgets/table/e-table-without.c
@@ -118,7 +118,7 @@ remove_row (ETableWithout *etw, gint view_row)
etss->map_table + view_row,
etss->map_table + view_row + 1,
(etss->n_map - view_row - 1) * sizeof (gint));
- etss->n_map --;
+ etss->n_map--;
e_table_model_row_deleted (E_TABLE_MODEL (etw), view_row);
}
@@ -325,7 +325,7 @@ void e_table_without_hide (ETableWithout *etw,
for (i = 0; i < etss->n_map; i++) {
if (check_with_key (etw, key, etw_view_to_model_row (etw, i))) {
remove_row (etw, i);
- i --;
+ i--;
}
}
}
@@ -341,7 +341,7 @@ void e_table_without_hide_adopt (ETableWithout *etw,
for (i = 0; i < etss->n_map; i++) {
if (check_with_key (etw, key, etw_view_to_model_row (etw, i))) {
remove_row (etw, i);
- i --;
+ i--;
}
}
}