Merging changes:

2001-12-06  Christopher James Lahey  <clahey@ximian.com>

	* e-table-subset.c (etss_get_view_row): Removed incorrect calls to
	e_table_model_row_changed here.

svn path=/trunk/; revision=14973
This commit is contained in:
Christopher James Lahey
2001-12-11 10:02:27 +00:00
committed by Chris Lahey
parent ef46478b1c
commit dc83cb0331

View File

@ -64,7 +64,6 @@ etss_get_view_row (ETableSubset *etss, int row)
for (i = initial - 1; i >= start; i--) {
if (map_table [i] == row){
e_table_model_row_changed (E_TABLE_MODEL (etss), i);
d(g_print("b) Found %d from %d\n", i, etss->last_access));
etss->last_access = i;
return i;
@ -73,7 +72,6 @@ etss_get_view_row (ETableSubset *etss, int row)
for (i = 0; i < n; i++){
if (map_table [i] == row){
e_table_model_row_changed (E_TABLE_MODEL (etss), i);
d(g_print("c) Found %d from %d\n", i, etss->last_access));
etss->last_access = i;
return i;