aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-mail.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2002-01-24 22:21:20 +0800
committerIain Holmes <iain@src.gnome.org>2002-01-24 22:21:20 +0800
commitd435a965c2b02c20429c3f858378fb296167f7be (patch)
treecac9f16ab3aa968784401f08da01355dae87ad09 /my-evolution/e-summary-mail.c
parent6336d0f2e6350ac2649bf2919830e8381d883701 (diff)
downloadgsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar
gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.gz
gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.bz2
gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.lz
gsoc2013-evolution-d435a965c2b02c20429c3f858378fb296167f7be.tar.xz
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-mail.c')
-rw-r--r--my-evolution/e-summary-mail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c
index cad51b1c2d..90d6bddd91 100644
--- a/my-evolution/e-summary-mail.c
+++ b/my-evolution/e-summary-mail.c
@@ -434,7 +434,7 @@ e_summary_mail_reconfigure (ESummary *summary)
old = mail->shown;
mail->shown = NULL;
- for (p = summary->preferences->display_folders; p; p = p->next) {
+ for (p = g_list_last (summary->preferences->display_folders); p; p = p->prev) {
ESummaryMailFolder *folder;
char *uri;