Fixed a silly little obvious bug.

2001-09-07  Jon Trowbridge  <trow@ximian.com>

	* e-table-without.c (e_table_without_show_all): Fixed a silly
	little obvious bug.

svn path=/trunk/; revision=12695
This commit is contained in:
Jon Trowbridge
2001-09-07 23:43:27 +00:00
committed by Jon Trowbridge
parent c0fa4148f3
commit e9ca2eea34

View File

@ -348,14 +348,14 @@ e_table_without_show_all (ETableWithout *etw)
}
etw->priv->hash = g_hash_table_new (etw->priv->hash_func, etw->priv->compare_func);
g_free (etss->map_table);
row_count = e_table_model_row_count (E_TABLE_MODEL(etw));
g_free (etss->map_table);
etss->map_table = g_new (int, row_count);
for (i = 0; i < row_count; i++) {
etss->map_table[i++] = i;
etss->map_table[i] = i;
}
etss->n_map = i;
etss->n_map = row_count;
e_table_model_changed (E_TABLE_MODEL (etw));
}