diff options
author | Not Zed <NotZed@Ximian.com> | 2004-10-22 17:16:11 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-10-22 17:16:11 +0800 |
commit | a4bb7987d23ba7748d44f079f1d45dd7cb4f37b1 (patch) | |
tree | af274ad4a581e47cb2b7d15bac358eea48701cba /mail/em-composer-utils.c | |
parent | 8c23e382711a447dd12117b14d715bccd0012797 (diff) | |
download | gsoc2013-evolution-a4bb7987d23ba7748d44f079f1d45dd7cb4f37b1.tar.gz gsoc2013-evolution-a4bb7987d23ba7748d44f079f1d45dd7cb4f37b1.tar.zst gsoc2013-evolution-a4bb7987d23ba7748d44f079f1d45dd7cb4f37b1.zip |
duh, they're camel not gobjects.
2004-10-22 Not Zed <NotZed@Ximian.com>
* em-event.c (eme_target_free): duh, they're camel not gobjects.
* em-folder-view.c (emfv_list_done_message_selected): added a
message.reading event.
svn path=/trunk/; revision=27694
Diffstat (limited to 'mail/em-composer-utils.c')
-rw-r--r-- | mail/em-composer-utils.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c index a4c328020b..01b3561659 100644 --- a/mail/em-composer-utils.c +++ b/mail/em-composer-utils.c @@ -1762,7 +1762,14 @@ em_utils_reply_to_message(CamelFolder *folder, const char *uid, CamelMimeMessage g_return_if_fail(message != NULL); - /* EVENT: message.replying definition */ + /** + * @Event: message.replying + * @Title: Message being replied to + * @Target: EMEventTargetMessage + * + * message.replying is emitted when a user starts replying to a message. + */ + eme = em_event_peek(); target = em_event_target_new_message(eme, folder, message, uid, mode == REPLY_MODE_ALL ? EM_EVENT_MESSAGE_REPLY_ALL : 0); |