aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-composer-utils.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-04 01:42:15 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:06 +0800
commit839b17d1fd5265f0dd32e63be2b9146466266757 (patch)
tree63e563cb56895dbc06278949acda68049b365adc /mail/em-composer-utils.h
parent5d1d6f4969e37f67e0900aa51ba6a51a3222ed1d (diff)
downloadgsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar.gz
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar.bz2
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar.lz
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar.xz
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.tar.zst
gsoc2013-evolution-839b17d1fd5265f0dd32e63be2b9146466266757.zip
Remove 'from_uri' params from e-msg-composer-utils.c.
Pass CamelFolder objects instead, which are already available at almost every call site.
Diffstat (limited to 'mail/em-composer-utils.h')
-rw-r--r--mail/em-composer-utils.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/mail/em-composer-utils.h b/mail/em-composer-utils.h
index bab32c450e..b5a2f8ab84 100644
--- a/mail/em-composer-utils.h
+++ b/mail/em-composer-utils.h
@@ -32,11 +32,11 @@
G_BEGIN_DECLS
void em_utils_compose_new_message (EShell *shell,
- const gchar *from_uri);
+ CamelFolder *folder);
EMsgComposer * em_utils_compose_new_message_with_mailto
(EShell *shell,
- const gchar *url,
- const gchar *from_uri);
+ const gchar *mailto,
+ CamelFolder *folder);
GtkWidget * em_utils_edit_message (EShell *shell,
CamelFolder *folder,
CamelMimeMessage *message);
@@ -46,12 +46,11 @@ void em_utils_edit_messages (EShell *shell,
gboolean replace);
EMsgComposer * em_utils_forward_message (EShell *shell,
CamelMimeMessage *msg,
- const gchar *from_uri,
+ CamelFolder *folder,
EMailForwardStyle style);
void em_utils_forward_messages (EShell *shell,
CamelFolder *folder,
GPtrArray *uids,
- const gchar *from_uri,
EMailForwardStyle style);
void em_utils_redirect_message (EShell *shell,
CamelMimeMessage *message);