diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-14 08:49:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-14 08:56:33 +0800 |
commit | 6cb0cbd0be5791aa0af1f78ce44c7a6563611d8f (patch) | |
tree | 8ac6832a905017845b3095112b83bb14da112617 /modules/addressbook/eab-composer-util.h | |
parent | caed9460b2d518005abe34035d5b414ff07c0212 (diff) | |
download | gsoc2013-evolution-6cb0cbd0be5791aa0af1f78ce44c7a6563611d8f.tar.gz gsoc2013-evolution-6cb0cbd0be5791aa0af1f78ce44c7a6563611d8f.tar.zst gsoc2013-evolution-6cb0cbd0be5791aa0af1f78ce44c7a6563611d8f.zip |
Pass an EShell to EMsgComposer instances.
Reduce the composer's dependency on e_shell_get_default().
Diffstat (limited to 'modules/addressbook/eab-composer-util.h')
-rw-r--r-- | modules/addressbook/eab-composer-util.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/addressbook/eab-composer-util.h b/modules/addressbook/eab-composer-util.h index 4aec23074d..a2feb2f999 100644 --- a/modules/addressbook/eab-composer-util.h +++ b/modules/addressbook/eab-composer-util.h @@ -19,12 +19,14 @@ #ifndef EAB_COMPOSER_UTIL_H #define EAB_COMPOSER_UTIL_H -#include <gtk/gtk.h> +#include <shell/e-shell.h> G_BEGIN_DECLS -void eab_send_as_to (GList *destinations); -void eab_send_as_attachment (GList *destinations); +void eab_send_as_to (EShell *shell, + GList *destinations); +void eab_send_as_attachment (EShell *shell, + GList *destinations); G_END_DECLS |