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:

committed by
Chris Lahey

parent
ef46478b1c
commit
dc83cb0331
@ -64,7 +64,6 @@ etss_get_view_row (ETableSubset *etss, int row)
|
|||||||
|
|
||||||
for (i = initial - 1; i >= start; i--) {
|
for (i = initial - 1; i >= start; i--) {
|
||||||
if (map_table [i] == row){
|
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));
|
d(g_print("b) Found %d from %d\n", i, etss->last_access));
|
||||||
etss->last_access = i;
|
etss->last_access = i;
|
||||||
return i;
|
return i;
|
||||||
@ -73,7 +72,6 @@ etss_get_view_row (ETableSubset *etss, int row)
|
|||||||
|
|
||||||
for (i = 0; i < n; i++){
|
for (i = 0; i < n; i++){
|
||||||
if (map_table [i] == row){
|
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));
|
d(g_print("c) Found %d from %d\n", i, etss->last_access));
|
||||||
etss->last_access = i;
|
etss->last_access = i;
|
||||||
return i;
|
return i;
|
||||||
|
Reference in New Issue
Block a user