diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-26 23:59:40 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:08 +0800 |
commit | 05c04b5512f8e6cc73b7c9ddb78640212cbdd71d (patch) | |
tree | f826ff6ac1043cecd9920c0b880631ea00131517 /mail | |
parent | 9deb892820f4b9d121b971d6af86116f3e18b6e2 (diff) | |
download | gsoc2013-evolution-05c04b5512f8e6cc73b7c9ddb78640212cbdd71d.tar.gz gsoc2013-evolution-05c04b5512f8e6cc73b7c9ddb78640212cbdd71d.tar.zst gsoc2013-evolution-05c04b5512f8e6cc73b7c9ddb78640212cbdd71d.zip |
ETableState: Add a "specification" construct-only property.
ETableState now keeps a weak reference on the ETableSpecification to
which it's associated. The plan is to replace the column index numbers
with a direct reference to an ETableColumnSpecification from the spec.
New functions:
e_table_state_ref_specification()
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-paned-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-paned-view.c b/mail/e-mail-paned-view.c index 67cf5b90b1..c491db7150 100644 --- a/mail/e-mail-paned-view.c +++ b/mail/e-mail-paned-view.c @@ -934,7 +934,7 @@ mail_paned_view_update_view_instance (EMailView *view) spec, spec_filename); g_free (spec_filename); - state = e_table_state_new (); + state = e_table_state_new (spec); view = gal_view_etable_new (spec, ""); e_table_state_load_from_file ( |