diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-01-24 22:21:20 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-01-24 22:21:20 +0800 |
commit | d435a965c2b02c20429c3f858378fb296167f7be (patch) | |
tree | cac9f16ab3aa968784401f08da01355dae87ad09 /my-evolution/e-summary-preferences.c | |
parent | 6336d0f2e6350ac2649bf2919830e8381d883701 (diff) | |
download | gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.gz gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.zst gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.zip |
Fix the mail order stuff
svn path=/trunk/; revision=15449
Diffstat (limited to 'my-evolution/e-summary-preferences.c')
-rw-r--r-- | my-evolution/e-summary-preferences.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 1a821601cf..09f9996e2d 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -660,7 +660,7 @@ fill_mail_shown_clist (GtkCList *clist, } else { text[0] = (char *) name + 1; /* GtkCList sucks. */ } - row = gtk_clist_append (clist, text); + row = gtk_clist_prepend (clist, text); gtk_clist_set_row_data (clist, row, p); } } @@ -747,7 +747,7 @@ mail_add_clicked_cb (GtkButton *button, text[0] = rd->name + 1; row = gtk_clist_append (GTK_CLIST (pd->mail->shown), text); - pd->summary->preferences->display_folders = g_list_append (pd->summary->preferences->display_folders, + pd->summary->preferences->display_folders = g_list_prepend (pd->summary->preferences->display_folders, g_strdup (rd->uri + 7)); gtk_clist_set_row_data (GTK_CLIST (pd->mail->shown), row, pd->summary->preferences->display_folders); @@ -859,6 +859,7 @@ rdf_add_clicked_cb (GtkButton *button, return; } } + pd->summary->preferences->rdf_urls = g_list_prepend (pd->summary->preferences->rdf_urls, g_strdup (info->url)); row = gtk_clist_prepend (GTK_CLIST (pd->rdf->shown), text); |