diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-10 00:06:15 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-10 00:06:15 +0800 |
commit | 5a4f9250eb1755bf3770b624731cb38453980c62 (patch) | |
tree | 2c77b72ceb7d2f01eaf021c3199b7052af3c5017 /mail/mail-ops.c | |
parent | 36c3c3cf936008c0c0f8b85605f4970f395b3fb7 (diff) | |
download | gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar.gz gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar.bz2 gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar.lz gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar.xz gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.tar.zst gsoc2013-evolution-5a4f9250eb1755bf3770b624731cb38453980c62.zip |
Don't g_warn if the user selects a fake tree parent.
* message-list.c (get_message_info): Don't g_warn if the user
selects a fake tree parent.
(message_list_select_next): Ignore fake rows
(build_tree): Store the "root_subject" for fake rows
(ml_tree_value_at): Display the correct subject for fake rows.
(on_cursor_change_cmd): Update for the other changes and set
cursor_uid to NULL when the cursor is on a fake row.
* mail-ops.c (reply): Don't try to reply when no (real) message is
selected.
(forward_msg): Ditto.
svn path=/trunk/; revision=4021
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index c7fcbeec50..7c0086e8ab 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -611,7 +611,7 @@ reply (FolderBrowser *fb, gboolean to_all) EMsgComposer *composer; struct post_send_data *psd; - if (!check_configured ()) + if (!check_configured () || !fb->message_list->cursor_uid) return; psd = g_new (struct post_send_data, 1); @@ -677,22 +677,19 @@ attach_msg (MessageList *ml, const char *uid, gpointer data) void forward_msg (GtkWidget *button, gpointer user_data) { - FolderBrowser *fb; + FolderBrowser *fb = FOLDER_BROWSER (user_data); EMsgComposer *composer; CamelMimeMessage *cursor_msg; const char *from, *subject; char *fwd_subj; - if (!check_configured ()) + cursor_msg = fb->mail_display->current_message; + if (!check_configured () || !cursor_msg) return; - - fb = FOLDER_BROWSER (user_data); composer = E_MSG_COMPOSER (e_msg_composer_new ()); message_list_foreach (fb->message_list, attach_msg, composer); - cursor_msg = fb->mail_display->current_message; - from = camel_mime_message_get_from (cursor_msg); subject = camel_mime_message_get_subject (cursor_msg); if (from) { |