|
From: CORE C. L. <cor...@li...> - 2000-11-25 19:11:55
|
Core CVS committal
Author : rbdpngn
Project : core
Module : src
Modified Files:
account.h callbacks.c
Log Message:
Fixed some of the issues with folder_selected.
===================================================================
RCS file: /cvsroot/corem/core/src/account.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- account.h 2000/11/23 09:32:12 1.9
+++ account.h 2000/11/25 19:11:52 1.10
@@ -78,4 +78,4 @@
Account *get_next_account(void);
/* Reset the file pointer for the local mailbox */
-int account_reset(Account * ac);
+int account_reset_file(Account * ac);
===================================================================
RCS file: /cvsroot/corem/core/src/callbacks.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- callbacks.c 2000/11/24 01:56:10 1.27
+++ callbacks.c 2000/11/25 19:11:52 1.28
@@ -15,7 +15,7 @@
extern GtkWidget *folder_ctree;
GtkWidget *folder_name, *full_name, *email_address, *type, *username,
- *password, *server, *path;
+ *password, *server, *path;
GtkWidget *accounts_win_new;
extern GtkWidget *toolbar;
@@ -345,6 +345,7 @@
GTK_CTREE_NODE
(node));
+ account_reset_file(mbox);
gtk_clist_freeze(GTK_CLIST(mail_ctree));
while (1) {
GtkCTreeNode *top, *item;
|