diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-04-23 00:18:33 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-04-23 00:18:33 +0800 |
commit | 06f657a95766cf0833f0c8b249b24d20b1501c76 (patch) | |
tree | 0e2ebac90b9ae1cb67d43bff8378e7680794cf81 /my-evolution/e-summary-preferences.c | |
parent | 36700e54fac7f0e97cbc7fdec0acb5777fedec3e (diff) | |
download | gsoc2013-evolution-06f657a95766cf0833f0c8b249b24d20b1501c76.tar.gz gsoc2013-evolution-06f657a95766cf0833f0c8b249b24d20b1501c76.tar.zst gsoc2013-evolution-06f657a95766cf0833f0c8b249b24d20b1501c76.zip |
Allow IMAP folders and VFolders and make the mail summaries show and make the etables almost work perfectly
svn path=/trunk/; revision=16556
Diffstat (limited to 'my-evolution/e-summary-preferences.c')
-rw-r--r-- | my-evolution/e-summary-preferences.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 447812b317..00bb7484ff 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -466,7 +466,7 @@ static struct _RDFInfo rdfs[] = { {"http://barrapunto.com/gnome.rdf", "Barrapunto GNOME", FALSE,}, {"http://www.bsdtoday.com/backend/bt.rdf", "BSD Today", FALSE}, {"http://beyond2000.com/b2k.rdf", "Beyond 2000", FALSE}, - {"http://www.cnn.com/cnn.rss", "CNN", FALSE}, + {"http://www.cnn.com/cnn.rss", "CNN", FALSE}, {"http://www.debianplanet.org/debianplanet/backend.php", "Debian Planet", FALSE}, {"http://www.dictionary.com/wordoftheday/wotd.rss", N_("Dictionary.com Word of the Day"), FALSE}, {"http://www.dvdreview.com/rss/newschannel.rss", "DVD Review", FALSE}, @@ -599,10 +599,15 @@ fill_rdf_etable (GtkWidget *widget, entry->name = g_strdup (rdfs[i].name); entry->showable = TRUE; - e_summary_shown_add_node (ess, TRUE, entry, NULL, NULL); + e_summary_shown_add_node (ess, TRUE, entry, NULL, TRUE, NULL); if (rdf_is_shown (pd, rdfs[i].url) == TRUE) { - e_summary_shown_add_node (ess, FALSE, entry, NULL, NULL); + entry = g_new (ESummaryShownModelEntry, 1); + entry->location = g_strdup (rdfs[i].url); + entry->name = g_strdup (rdfs[i].name); + entry->showable = TRUE; + + e_summary_shown_add_node (ess, FALSE, entry, NULL, TRUE, NULL); } pd->rdf->known = g_list_append (pd->rdf->known, &rdfs[i]); @@ -658,10 +663,15 @@ fill_rdf_etable (GtkWidget *widget, entry->name = g_strdup (info->name); entry->showable = TRUE; - e_summary_shown_add_node (ess, TRUE, entry, NULL, NULL); + e_summary_shown_add_node (ess, TRUE, entry, NULL, TRUE, NULL); if (rdf_is_shown (pd, tokens[0]) == TRUE) { - e_summary_shown_add_node (ess, FALSE, entry, NULL, NULL); + entry = g_new (ESummaryShownModelEntry, 1); + entry->location = g_strdup (info->url); + entry->name = g_strdup (info->name); + entry->showable = TRUE; + + e_summary_shown_add_node (ess, FALSE, entry, NULL, TRUE, NULL); } g_strfreev (tokens); |