Sort the list of categories. (Bug 8088)

2001-10-05  Jon Trowbridge  <trow@ximian.com>

        * gal/widgets/e-categories-master-list-combo.c
        (ecmlc_ecml_changed): Sort the list of categories.
        (Bug 8088)

2001-10-05  Jon Trowbridge  <trow@ximian.com>

        * 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  <trow@ximian.com>

        * 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
This commit is contained in:
Jon Trowbridge
2001-10-05 20:29:31 +00:00
committed by Jon Trowbridge
parent 0c80b554c4
commit cb48c65b20

View File

@ -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);