diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-08-08 07:19:20 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-08 07:19:20 +0800 |
commit | fc7ad0c9a97377934f6f1c03c5fa805a6c471513 (patch) | |
tree | 07e894ae98ad386f35bbad9ab2359cbd18152afd /mail/mail-accounts.h | |
parent | a3075377cc82352d45107303b3cde5a22b0cfb44 (diff) | |
download | gsoc2013-evolution-fc7ad0c9a97377934f6f1c03c5fa805a6c471513.tar.gz gsoc2013-evolution-fc7ad0c9a97377934f6f1c03c5fa805a6c471513.tar.zst gsoc2013-evolution-fc7ad0c9a97377934f6f1c03c5fa805a6c471513.zip |
This should return a GtkWidget not a GtkObject.
2001-08-07 Jeffrey Stedfast <fejj@ximian.com>
* subscribe-dialog.c (subscribe_dialog_new): This should return a
GtkWidget not a GtkObject.
* mail-session.c (get_filter_driver): Update to use user's logging
preferences.
* mail-accounts.c (filter_log_toggled): New.
(filter_log_path_changed): New.
(construct): Get and attach signals to the filter logging option
widgets.
* mail-config.c (config_read): Read in filter logging options.
(mail_config_write_on_exit): Save filter logging options.
(mail_config_set_filter_log_path): Implemented.
(mail_config_get_filter_log_path): Implemented.
(mail_config_set_filter_log): Implemented.
(mail_config_get_filter_log): Implemented.
svn path=/trunk/; revision=11751
Diffstat (limited to 'mail/mail-accounts.h')
-rw-r--r-- | mail/mail-accounts.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mail/mail-accounts.h b/mail/mail-accounts.h index 227a887010..0db2acb3b8 100644 --- a/mail/mail-accounts.h +++ b/mail/mail-accounts.h @@ -78,18 +78,20 @@ struct _MailAccountsDialog { GtkToggleButton *timeout_toggle; GtkSpinButton *timeout; GtkToggleButton *images_always, *images_sometimes, *images_never; + GtkToggleButton *thread_list; + GtkToggleButton *show_preview; /* Composer page */ GtkToggleButton *send_html; GtkOptionMenu *forward_style; GtkOptionMenu *charset; + GtkToggleButton *prompt_empty_subject; + GtkToggleButton *prompt_bcc_only; /* Other page */ GtkToggleButton *empty_trash; - GtkToggleButton *prompt_empty_subject; - GtkToggleButton *prompt_bcc_only; - GtkToggleButton *thread_list; - GtkToggleButton *show_preview; + GtkToggleButton *filter_log; + GnomeFileEntry *filter_log_path; /* PGP page */ GnomeFileEntry *pgp_path; |