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/subscribe-dialog.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/subscribe-dialog.c')
-rw-r--r-- | mail/subscribe-dialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index 9a441ff419..133d82405c 100644 --- a/mail/subscribe-dialog.c +++ b/mail/subscribe-dialog.c @@ -45,8 +45,8 @@ <ETableColumn model_col=\"0\" pixbuf=\"subscribed-image\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"cell_toggle\" compare=\"string\"/> \ <ETableColumn model_col=\"1\" _title=\"Folder\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"cell_tree\" compare=\"string\"/> \ <ETableState> \ - <column> 0 </column> \ - <column> 1 </column> \ + <column source=\"0\"/> \ + <column source=\"1\"/> \ <grouping></grouping> \ </ETableState> \ </ETableSpecification>" @@ -54,7 +54,7 @@ #define STORE_ETABLE_SPEC "<ETableSpecification cursor-mode=\"line\"> \ <ETableColumn model_col=\"0\" _title=\"Store\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"cell_text\" compare=\"string\"/> \ <ETableState> \ - <column> 0 </column> \ + <column source=\"0\"/> \ <grouping></grouping> \ </ETableState> \ </ETableSpecification>" |