From cb48c65b206a7c30e9c116ab5c047f22fe39837b Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Fri, 5 Oct 2001 20:29:31 +0000 Subject: Sort the list of categories. (Bug 8088) 2001-10-05 Jon Trowbridge * gal/widgets/e-categories-master-list-combo.c (ecmlc_ecml_changed): Sort the list of categories. (Bug 8088) 2001-10-05 Jon Trowbridge * e-table-without.c (e_table_without_show_all): We need to take the row count from the source model, not from the ETableWithout. This typo is why contacts kept disappearing in the SelectNames dialog. (Bugs 9326, 10916) 2001-10-04 Jon Trowbridge * e-icon-bar.c (e_icon_bar_add_item): Don't call gdk_pixbuf_ref if image is NULL. * e-shortcut-model.c (e_shortcut_model_real_get_item_info): Check to make sure we don't call gdk_pixbuf_ref on NULL, which causes a warning. svn path=/trunk/; revision=13465 --- widgets/table/e-table-without.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/table/e-table-without.c') diff --git a/widgets/table/e-table-without.c b/widgets/table/e-table-without.c index 49309802e9..1045906de2 100644 --- a/widgets/table/e-table-without.c +++ b/widgets/table/e-table-without.c @@ -348,7 +348,7 @@ e_table_without_show_all (ETableWithout *etw) } etw->priv->hash = g_hash_table_new (etw->priv->hash_func, etw->priv->compare_func); - row_count = e_table_model_row_count (E_TABLE_MODEL(etw)); + row_count = e_table_model_row_count (E_TABLE_MODEL(etss->source)); g_free (etss->map_table); etss->map_table = g_new (int, row_count); -- cgit v1.2.3