diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-04-13 03:52:41 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-04-13 03:52:41 +0800 |
commit | d550435b705ef5f4a0afe499f7e5abf944004f1e (patch) | |
tree | 3415bf976589f130f6675c0a29a481b5634c676b /mail/mail-callbacks.c | |
parent | b53958f38cf80861670275b80fde98d3cada606b (diff) | |
download | gsoc2013-evolution-d550435b705ef5f4a0afe499f7e5abf944004f1e.tar.gz gsoc2013-evolution-d550435b705ef5f4a0afe499f7e5abf944004f1e.tar.zst gsoc2013-evolution-d550435b705ef5f4a0afe499f7e5abf944004f1e.zip |
Setup News preferences too if it is enabled.
2002-04-12 Jeffrey Stedfast <fejj@ximian.com>
* mail-accounts.c (mail_accounts_tab_construct): Setup News
preferences too if it is enabled.
svn path=/trunk/; revision=16451
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index a33237acf2..9a2f349103 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -2926,16 +2926,16 @@ done_message_selected (CamelFolder *folder, char *uid, CamelMimeMessage *msg, vo static void do_mail_fetch_and_print (FolderBrowser *fb, gboolean preview) { - if (! fb->preview_shown) { + if (!fb->preview_shown) { /* If the preview pane is closed, we have to do some extra magic to load the message. */ struct blarg_this_sucks *blarg = g_new (struct blarg_this_sucks, 1); - + blarg->fb = fb; blarg->preview = preview; - + fb->loading_id = 0; - + /* if we are loading, then set a pending, but leave the loading, coudl cancel here (?) */ if (fb->loading_uid) { g_free (fb->pending_uid); @@ -2949,7 +2949,6 @@ do_mail_fetch_and_print (FolderBrowser *fb, gboolean preview) g_free (blarg); } } - } else { do_mail_print (fb, preview); } @@ -2957,6 +2956,7 @@ do_mail_fetch_and_print (FolderBrowser *fb, gboolean preview) /* </evil_code> */ + void print_msg (GtkWidget *button, gpointer user_data) { |