diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-11 20:11:11 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-11 20:11:11 +0800 |
commit | 82dd927886185c33da8df84db60f963fde29ace7 (patch) | |
tree | fb52bceac6a54271da0a1caf539afc761fb7db24 /mail/message-list.c | |
parent | 108723d273dd2d6b0616d387f2b0815b365ec5c3 (diff) | |
download | gsoc2013-evolution-82dd927886185c33da8df84db60f963fde29ace7.tar.gz gsoc2013-evolution-82dd927886185c33da8df84db60f963fde29ace7.tar.zst gsoc2013-evolution-82dd927886185c33da8df84db60f963fde29ace7.zip |
Changed these to use the proper form for the column element.
2000-10-11 Christopher James Lahey <clahey@helixcode.com>
* message-list.c, message-list.h, subscribe-dialog.c: Changed
these to use the proper form for the column element.
svn path=/trunk/; revision=5849
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 653397ddec..c7e0c3e571 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -862,8 +862,8 @@ message_list_get_layout (MessageList *message_list) "<ETableColumn model_col= \"6\" _title=\"Received\" expansion=\"20.0\" minimum_width=\"32\" resizable=\"true\" cell=\"render_date\" compare=\"integer\"/>" "<ETableColumn model_col= \"7\" _title=\"To\" expansion=\"24.0\" minimum_width=\"32\" resizable=\"true\" cell=\"render_text\" compare=\"address_compare\"/>" "<ETableColumn model_col= \"8\" _title=\"Size\" expansion=\"6.0\" minimum_width=\"32\" resizable=\"true\" cell=\"render_text\" compare=\"string\"/>" - "<ETableState> <column> 0 </column> <column> 3 </column>" - "<column> 4 </column> <column> 5 </column>" + "<ETableState> <column source=\"0\"/> <column source=\"3\"/>" + "<column source=\"4\"/> <column source=\"5\"/>" "<grouping> </grouping> </ETableState>" "</ETableSpecification>"); } @@ -872,8 +872,8 @@ static void message_list_setup_etable(MessageList *message_list) { char *state = "<ETableState>" - "<column> 0 </column> <column> 7 </column>" - "<column> 4 </column> <column> 5 </column> " + "<column source=\"0\"/> <column source=\"7\"/>" + "<column source=\"4\"/> <column source=\"5\"/>" "<grouping> </grouping> </ETableState>"; /* build the spec based on the folder, and possibly from a saved file */ |