aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-info.c
diff options
context:
space:
mode:
author0 <NotZed@Ximian.com>2001-10-30 19:10:48 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-10-30 19:10:48 +0800
commitf53a0de05a720133be8dc58e5f61fa6d0fc4d9ba (patch)
tree9da92b171b49e97c3986ac3ad918f22a8e9283ff /mail/folder-info.c
parentdaaeb84173905de459b2048c84f46e4cf7719585 (diff)
downloadgsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar.gz
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar.bz2
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar.lz
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar.xz
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.tar.zst
gsoc2013-evolution-f53a0de05a720133be8dc58e5f61fa6d0fc4d9ba.zip
Comment out the Folder: and you've got mail prints.
2001-10-30 <NotZed@Ximian.com> * folder-info.c: Comment out the Folder: and you've got mail prints. * mail-config-druid.c (wizard_next_cb): If we have a next function, honour if it tells us its going to set the page, and dont set it, otherwise, set it to the next page, unless we're at the end of our pages, and let the wizard do it itself. (wizard_back_cb): Same for going back. Rest of fix for #12127, see e-shell-startup-wizard for the rest. (next_func): If we're not on the last page, tell the druid we're gonna handle the next button, so we can sync properly with it, needed for above changes. (back_func): Similarly for going back past page 0. (wizard_listener_event): We want to set the page to the actual one asked for not, pagenum-1. svn path=/trunk/; revision=14449
Diffstat (limited to 'mail/folder-info.c')
-rw-r--r--mail/folder-info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/folder-info.c b/mail/folder-info.c
index 2280b72a46..b916f2fb16 100644
--- a/mail/folder-info.c
+++ b/mail/folder-info.c
@@ -132,7 +132,7 @@ do_got_info (struct _mail_msg *mm)
CORBA_any a;
GNOME_Evolution_FolderInfo_MessageCount count;
- g_print ("You've got mail: %d, %d\n", m->read, m->unread);
+ /*g_print ("You've got mail: %d, %d\n", m->read, m->unread);*/
count.path = m->foldername;
count.count = m->read;
@@ -179,7 +179,7 @@ mail_get_info (const char *foldername,
m = mail_msg_new (&get_info_op, NULL, sizeof (*m));
- g_print ("Folder: %s", foldername);
+ /*g_print ("Folder: %s", foldername);*/
m->foldername = g_strdup (foldername);
CORBA_exception_init (&ev);