aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-10-05 05:29:55 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-10-05 05:29:55 +0800
commit3eed228723a8c745e6ae28df8a80191c24dd483a (patch)
treeca5b0d15aec57c3f7c30418b3aea24275b10e7fa /mail/mail-config.h
parent447e2e189e014678bd8af495a3fc6ca5d70297ca (diff)
downloadgsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar.gz
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar.bz2
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar.lz
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar.xz
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.tar.zst
gsoc2013-evolution-3eed228723a8c745e6ae28df8a80191c24dd483a.zip
Ignore the signal if the radio button is not "on". This fixes bug #10532
2001-10-04 Jeffrey Stedfast <fejj@ximian.com> * mail-accounts.c (images_radio_toggled): Ignore the signal if the radio button is not "on". This fixes bug #10532 because the on/off signals don't always come in the off->on order. * mail-ops.c (mail_send_message): Reduced some redundancy. svn path=/trunk/; revision=13424
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r--mail/mail-config.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h
index 1264a8cbc3..ad79825865 100644
--- a/mail/mail-config.h
+++ b/mail/mail-config.h
@@ -69,17 +69,20 @@ typedef struct {
} MailConfigAccount;
typedef enum {
- MAIL_CONFIG_HTTP_NEVER, MAIL_CONFIG_HTTP_SOMETIMES,
+ MAIL_CONFIG_HTTP_NEVER,
+ MAIL_CONFIG_HTTP_SOMETIMES,
MAIL_CONFIG_HTTP_ALWAYS
} MailConfigHTTPMode;
typedef enum {
- MAIL_CONFIG_FORWARD_ATTACHED, MAIL_CONFIG_FORWARD_INLINE,
+ MAIL_CONFIG_FORWARD_ATTACHED,
+ MAIL_CONFIG_FORWARD_INLINE,
MAIL_CONFIG_FORWARD_QUOTED
} MailConfigForwardStyle;
typedef enum {
- MAIL_CONFIG_DISPLAY_NORMAL, MAIL_CONFIG_DISPLAY_FULL_HEADERS,
+ MAIL_CONFIG_DISPLAY_NORMAL,
+ MAIL_CONFIG_DISPLAY_FULL_HEADERS,
MAIL_CONFIG_DISPLAY_SOURCE,
MAIL_CONFIG_DISPLAY_MAX
} MailConfigDisplayStyle;