diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-08-13 00:42:41 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-08-13 00:42:41 +0800 |
commit | 377a4e07ab44804bca74b1a1806d2d3220a9815c (patch) | |
tree | 73c43a169524db0de1a6f35fa9a08e0d622de4cb | |
parent | c5fbbb59831260c87c92615aebb2c3cb739cebc7 (diff) | |
download | gsoc2013-evolution-377a4e07ab44804bca74b1a1806d2d3220a9815c.tar.gz gsoc2013-evolution-377a4e07ab44804bca74b1a1806d2d3220a9815c.tar.zst gsoc2013-evolution-377a4e07ab44804bca74b1a1806d2d3220a9815c.zip |
Remove duff URIs and comment out the set_release call until I know what it does and why it's crashing
svn path=/trunk/; revision=17759
-rw-r--r-- | my-evolution/ChangeLog | 6 | ||||
-rw-r--r-- | my-evolution/e-summary-preferences.c | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 512f155827..7ee21be7e9 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,9 @@ +2002-08-12 Iain <iain@ximian.com> + + * e-summary-preferences.c: Removed duff URIs + (set_selected_folders): Comment out the set_release call, as it's + crashing, and I have no idea what it's supposed to do. + 2002-08-07 Dan Winship <danw@ximian.com> * e-summary-mail.c (update_folder_cb): Only get folder info if diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 406955ea92..842bda0be8 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -584,23 +584,19 @@ static struct _RDFInfo rdfs[] = { {"http://dot.kde.org/rdf", "KDE Dot News", FALSE}, {"http://www.kuro5hin.org/backend.rdf", "Kuro5hin", FALSE}, {"http://linuxgames.com/bin/mynetscape.pl", "Linux Games", FALSE}, - {"http://linux.com/mrn/jobs/latest_jobs.rss", "Linux Jobs", FALSE}, {"http://linuxtoday.com/backend/my-netscape.rdf", "Linux Today", FALSE}, {"http://lwn.net/headlines/rss", "Linux Weekly News", FALSE}, - {"http://www.linux.com/mrn/front_page.rss", "Linux.com", FALSE}, {"http://memepool.com/memepool.rss", "Memepool", FALSE}, {"http://www.mozilla.org/news.rdf", "Mozilla", FALSE}, {"http://www.mozillazine.org/contents.rdf", "Mozillazine", FALSE}, {"http://www.fool.com/about/headlines/rss_headlines.asp", "The Motley Fool", FALSE}, {"http://www.newsforge.com/newsforge.rss", "Newsforge", FALSE}, - {"http://www.nanotechnews.com/nano/rdf", "Nanotech News", FALSE}, {"http://www.pigdog.org/pigdog.rdf", "Pigdog", FALSE}, {"http://www.python.org/channews.rdf", "Python.org", FALSE}, {"http://www.quotationspage.com/data/mqotd.rss", N_("Quotes of the Day"), FALSE}, {"http://www.salon.com/feed/RDF/salon_use.rdf", "Salon", FALSE}, {"http://slashdot.org/slashdot.rdf", "Slashdot", FALSE}, {"http://www.theregister.co.uk/tonys/slashdot.rdf", "The Register", FALSE}, - {"http://www.thinkgeek.com/thinkgeek.rdf", "Think Geek", FALSE}, {"http://www.webreference.com/webreference.rdf", "Web Reference", FALSE}, {"http://redcarpet.ximian.com/red-carpet.rdf", "Ximian Red Carpet New", FALSE}, {NULL, NULL, FALSE} @@ -1325,7 +1321,7 @@ set_selected_folders (GNOME_Evolution_StorageSetView view) list->_maximum = count; list->_buffer = CORBA_sequence_GNOME_Evolution_Folder_allocbuf (count); - CORBA_sequence_set_release (list->_buffer, TRUE); +/* CORBA_sequence_set_release (list->_buffer, TRUE); */ for (i = 0, l = global_preferences->display_folders; l; i++, l = l->next) { ESummaryPrefsFolder *folder = l->data; |