diff options
author | Dan Winship <danw@src.gnome.org> | 2001-03-26 00:55:03 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-03-26 00:55:03 +0800 |
commit | 768085542752167f63ed51a614dd884d4d72fb21 (patch) | |
tree | 579187378665d27e6683592caec63f71839ee9fa /widgets/table/e-table.c | |
parent | e29d5a8a7adbc9363d4a054b6ab70ada182ae15d (diff) | |
download | gsoc2013-evolution-768085542752167f63ed51a614dd884d4d72fb21.tar.gz gsoc2013-evolution-768085542752167f63ed51a614dd884d4d72fb21.tar.zst gsoc2013-evolution-768085542752167f63ed51a614dd884d4d72fb21.zip |
ref the sort_info taken from the state object. Ditto. Fixes the last ETree
* e-table.c (et_real_construct): ref the sort_info taken from the
state object.
* e-tree.c (et_real_construct): Ditto. Fixes the last ETree
crash-on-exit bug for me.
svn path=/trunk/; revision=8929
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r-- | widgets/table/e-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index f1f68242f0..4a2edcb6f1 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -961,6 +961,7 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete, e_table->horizontal_scrolling = specification->horizontal_scrolling; e_table->sort_info = state->sort_info; + gtk_object_ref (GTK_OBJECT (state->sort_info)); e_table->group_info_change_id = gtk_signal_connect (GTK_OBJECT (e_table->sort_info), "group_info_changed", |