diff options
author | Radek Doulik <rodo@ximian.com> | 2003-12-04 22:14:36 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-12-04 22:14:36 +0800 |
commit | 429ac6ac1df8c8e91a615c9c0fb3f709230e52bc (patch) | |
tree | 2ea11ae54535cddfced86e559bea42b635743ff2 /mail/em-junk-plugin.h | |
parent | 23017711eb711dc8e9296b4ed7a5a24d193fe6f2 (diff) | |
download | gsoc2013-evolution-429ac6ac1df8c8e91a615c9c0fb3f709230e52bc.tar.gz gsoc2013-evolution-429ac6ac1df8c8e91a615c9c0fb3f709230e52bc.tar.zst gsoc2013-evolution-429ac6ac1df8c8e91a615c9c0fb3f709230e52bc.zip |
monitor gconf key /apps/evolution/mail/junk/check_incoming and keep
2003-12-04 Radek Doulik <rodo@ximian.com>
* mail-session.c: monitor gconf key
/apps/evolution/mail/junk/check_incoming and keep session junk
flag uptodate
* em-mailer-prefs.c (em_mailer_prefs_construct): added junk
preferences
svn path=/trunk/; revision=23630
Diffstat (limited to 'mail/em-junk-plugin.h')
-rw-r--r-- | mail/em-junk-plugin.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mail/em-junk-plugin.h b/mail/em-junk-plugin.h index 0c7eacd165..bd4af4cf9a 100644 --- a/mail/em-junk-plugin.h +++ b/mail/em-junk-plugin.h @@ -34,14 +34,13 @@ struct _EMJunkPlugin { CamelJunkPlugin csp; - /* when called, it should insert own GUI configuration into supplied. - container. returns data pointer which is later passed to apply, + /* when called, it should return widget containing UI configuration. plugin has to call (*changed_cb) (); whenever configuration - is changed to notify settings dialog about a change. - if setup_config_ui is NULL, it means there are no options */ + is changed to notify settings dialog about that change. + if setup_widget is NULL, it means there is no UI configuration */ - gpointer (*setup_config_ui) (GtkWidget *container, void (*changed_cb) ()); - void (*apply) (gpointer data); + GtkWidget (*setup_widget) (void (*changed_cb) ()); + void (*apply) (); }; #endif |