diff options
author | Milan Crha <mcrha@redhat.com> | 2012-02-16 20:04:47 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-02-16 20:05:55 +0800 |
commit | 3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6 (patch) | |
tree | fcfb53b4b1107aed1d38a08611a5b7abf9a9e9c6 /modules/mail/e-mail-shell-backend.h | |
parent | 02cbfd837abaf8ec1218cc97f7fed70cbd1fdf7e (diff) | |
download | gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar.gz gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar.bz2 gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar.lz gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar.xz gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.tar.zst gsoc2013-evolution-3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6.zip |
Bug #668482 - Edit account properties from menu on folder store
Diffstat (limited to 'modules/mail/e-mail-shell-backend.h')
-rw-r--r-- | modules/mail/e-mail-shell-backend.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/mail/e-mail-shell-backend.h b/modules/mail/e-mail-shell-backend.h index 9d9a8e1dad..c9c23d045d 100644 --- a/modules/mail/e-mail-shell-backend.h +++ b/modules/mail/e-mail-shell-backend.h @@ -22,6 +22,7 @@ #ifndef E_MAIL_SHELL_BACKEND_H #define E_MAIL_SHELL_BACKEND_H +#include <libedataserver/e-account.h> #include <mail/e-mail-backend.h> /* Standard GObject macros */ @@ -58,9 +59,14 @@ struct _EMailShellBackendClass { EMailBackendClass parent_class; }; -GType e_mail_shell_backend_get_type (void); -void e_mail_shell_backend_type_register - (GTypeModule *type_module); +GType e_mail_shell_backend_get_type (void); +void e_mail_shell_backend_type_register (GTypeModule *type_module); + +void e_mail_shell_backend_new_account (EMailShellBackend *mail_shell_backend, + GtkWindow *parent); +void e_mail_shell_backend_edit_account (EMailShellBackend *mail_shell_backend, + GtkWindow *parent, + EAccount *account); /* XXX Find a better place for this function. */ GSList * e_mail_labels_get_filter_options (void); |