diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-10-06 04:29:31 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-10-06 04:29:31 +0800 |
commit | cb48c65b206a7c30e9c116ab5c047f22fe39837b (patch) | |
tree | 0049da9f20c6957634fec3cf725d9dbc2b12159d /widgets | |
parent | 0c80b554c4c6151331370884438f9ae3815cade5 (diff) | |
download | gsoc2013-evolution-cb48c65b206a7c30e9c116ab5c047f22fe39837b.tar.gz gsoc2013-evolution-cb48c65b206a7c30e9c116ab5c047f22fe39837b.tar.zst gsoc2013-evolution-cb48c65b206a7c30e9c116ab5c047f22fe39837b.zip |
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
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-table-without.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |