aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-13 04:25:21 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-13 04:25:21 +0800
commit6445c55f20d4ea5471594ccfff1c7ad2f0add454 (patch)
tree78871b98eaa6f9b1f76674ceb12c978dbd88fd1e /widgets
parent12cd9f731c24cd5aea164737584d1f19568e48d7 (diff)
downloadgsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar.gz
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar.bz2
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar.lz
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar.xz
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.tar.zst
gsoc2013-evolution-6445c55f20d4ea5471594ccfff1c7ad2f0add454.zip
Copy the can group state on the sort info here.
2001-10-12 Christopher James Lahey <clahey@ximian.com> * e-table-state.c (e_table_state_duplicate): Copy the can group state on the sort info here. svn path=/trunk/; revision=13625
Diffstat (limited to 'widgets')
-rw-r--r--widgets/table/e-table-state.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/table/e-table-state.c b/widgets/table/e-table-state.c
index 4c6467ce8e..4bd36d2b0d 100644
--- a/widgets/table/e-table-state.c
+++ b/widgets/table/e-table-state.c
@@ -240,5 +240,9 @@ e_table_state_duplicate (ETableState *state)
e_table_state_load_from_string (new_state, copy);
g_free (copy);
+ e_table_sort_info_set_can_group
+ (new_state->sort_info,
+ e_table_sort_info_get_can_group (state->sort_info));
+
return new_state;
}