diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-05-23 04:22:36 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-05-23 04:22:36 +0800 |
commit | f384952f1b1a4f5c0073bccfe67e417a4ac11e9c (patch) | |
tree | 669f467489b697ad1088d1a511950ec529bf936d /widgets/table | |
parent | 35f5f53a11ba1d7a8d648a0f4ee7e590a071d6d3 (diff) | |
download | gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar.gz gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar.bz2 gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar.lz gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar.xz gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.tar.zst gsoc2013-evolution-f384952f1b1a4f5c0073bccfe67e417a4ac11e9c.zip |
Made this faster in some cases.
2001-05-22 Christopher James Lahey <clahey@ximian.com>
* e-table-sorted.c (ets_proxy_model_rows_deleted): Made this
faster in some cases.
svn path=/trunk/; revision=9937
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-sorted.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-sorted.c b/widgets/table/e-table-sorted.c index 71cbce1671..4396b23ff3 100644 --- a/widgets/table/e-table-sorted.c +++ b/widgets/table/e-table-sorted.c @@ -230,7 +230,7 @@ ets_proxy_model_rows_deleted (ETableSubset *etss, ETableModel *source, int row, gboolean shift; int j; - shift = row == etss->n_map - 1; + shift = row == etss->n_map - count; for (j = 0; j < count; j++) { for (i = 0; i < etss->n_map; i++){ |