aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-02 23:07:43 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-02 23:58:08 +0800
commitca14cc115ee90650f1546ed3d95bf1ce6010569f (patch)
treed86226ab80a98b8397894d07c44b6ccf6b56ccc7 /mail
parent1b7fc9224b7107361282904483805c67d4980586 (diff)
downloadgsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar.gz
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar.bz2
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar.lz
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar.xz
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.tar.zst
gsoc2013-evolution-ca14cc115ee90650f1546ed3d95bf1ce6010569f.zip
em_utils_redirect_message: Return the EMsgComposer.
Diffstat (limited to 'mail')
-rw-r--r--mail/em-composer-utils.c10
-rw-r--r--mail/em-composer-utils.h2
2 files changed, 8 insertions, 4 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c
index 1ade12f738..cc8c1e33d6 100644
--- a/mail/em-composer-utils.c
+++ b/mail/em-composer-utils.c
@@ -2206,21 +2206,25 @@ redirect_get_composer (EShell *shell,
*
* Opens a composer to redirect @message (Note: only headers will be
* editable). Adds Resent-From/Resent-To/etc headers.
+ *
+ * Returns: the resulting #EMsgComposer
**/
-void
+EMsgComposer *
em_utils_redirect_message (EShell *shell,
CamelMimeMessage *message)
{
EMsgComposer *composer;
- g_return_if_fail (E_IS_SHELL (shell));
- g_return_if_fail (CAMEL_IS_MIME_MESSAGE (message));
+ g_return_val_if_fail (E_IS_SHELL (shell), NULL);
+ g_return_val_if_fail (CAMEL_IS_MIME_MESSAGE (message), NULL);
composer = redirect_get_composer (shell, message);
gtk_widget_show (GTK_WIDGET (composer));
composer_set_no_change (composer);
+
+ return composer;
}
/* Replying to messages... */
diff --git a/mail/em-composer-utils.h b/mail/em-composer-utils.h
index 56555e97e7..5c3eb73889 100644
--- a/mail/em-composer-utils.h
+++ b/mail/em-composer-utils.h
@@ -58,7 +58,7 @@ void em_utils_forward_messages (EMailReader *reader,
GPtrArray *uids,
EMailForwardStyle style,
GtkWidget *destroy_when_done);
-void em_utils_redirect_message (EShell *shell,
+EMsgComposer * em_utils_redirect_message (EShell *shell,
CamelMimeMessage *message);
gchar * em_utils_construct_composer_text
(CamelSession *session,