diff options
author | 5 <NotZed@Ximian.com> | 2001-10-06 05:50:12 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-06 05:50:12 +0800 |
commit | e2aaec85d0e2d4fe32a869725645983274a2931b (patch) | |
tree | a1a154a698de0f403777d6fd3434c10f9a02b463 /mail/mail-callbacks.c | |
parent | 5ad20324785610c9e45a5cee5a885e3a00bf78e9 (diff) | |
download | gsoc2013-evolution-e2aaec85d0e2d4fe32a869725645983274a2931b.tar.gz gsoc2013-evolution-e2aaec85d0e2d4fe32a869725645983274a2931b.tar.zst gsoc2013-evolution-e2aaec85d0e2d4fe32a869725645983274a2931b.zip |
reformatted the menu tables so they're a bit more bloody readable.
2001-10-05 <NotZed@Ximian.com>
* folder-browser.c: reformatted the menu tables so they're a bit
more bloody readable.
* mail-folder-cache.c (mail_note_store): Hook into
subscribed/unsubscribed events. Only 'add/remove' folders from
the add/removed events if we aren't subscribed, otherwise use the
subscribed events. Rest of fix for #11831
svn path=/trunk/; revision=13472
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index 36011a8d57..6336d7102e 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -1048,6 +1048,8 @@ reply_to_sender (GtkWidget *widget, gpointer user_data) { FolderBrowser *fb = FOLDER_BROWSER (user_data); + /* FIXME: make this always load the message based on cursor */ + if (!check_send_configuration (fb)) return; @@ -1062,6 +1064,8 @@ reply_to_list (GtkWidget *widget, gpointer user_data) if (!check_send_configuration (fb)) return; + + /* FIXME: make this always load the message based on cursor */ mail_reply (fb->folder, fb->mail_display->current_message, fb->message_list->cursor_uid, REPLY_LIST); @@ -1074,6 +1078,8 @@ reply_to_all (GtkWidget *widget, gpointer user_data) if (!check_send_configuration (fb)) return; + + /* FIXME: make this always load the message based on cursor */ mail_reply (fb->folder, fb->mail_display->current_message, fb->message_list->cursor_uid, REPLY_ALL); @@ -1301,6 +1307,8 @@ addrbook_sender (GtkWidget *widget, gpointer user_data) GtkWidget *control; GtkWidget *socket; + /* FIXME: make this use the cursor message id */ + if (fb && fb->mail_display) msg = fb->mail_display->current_message; |