Modified the signature of the connection changed handler
[modest] / src / modest-tny-msg-actions.h
index bed606a..8e43fad 100644 (file)
 #define __MODEST_TNY_MSG_ACTIONS_H__
 
 /**
- * modest_tny_msg_actions_quote:
- * @self: the message to quote
- * @from: the original sender of the message
- * @sent_date: the date the original message was sent
- * @limit: characters per line limit for the quoted message
- * @to_quote: a string to quote instead of the message body
- * 
- * reply-quotes a message or @to_quote if it's not NULL.
-
- * Note: @from and @sent_date may be eliminated from the API in future versions
- * 
- * Returns: a newly allocated string containing the quoted message
- */
-gchar *modest_tny_msg_actions_quote (TnyMsg * self, const gchar * from,
-                                    time_t sent_date, gint limit,
-                                    const gchar *to_quote);
-
-/**
  * modest_tny_msg_actions_find_body_part:
  * @self: a message
  * @want_html: prefer HTML-part when there are multiple body parts?
@@ -68,11 +50,22 @@ TnyMimePart *modest_tny_msg_actions_find_body_part (TnyMsg * self, gboolean want
  * 
  * search for the nth (mime) part in the message
  * 
- * Returns: the TnyMsgMimePart for the found part, or NULL if no matching part is foundi; must be unref'd
+ * Returns: the TnyMsgMimePart for the found part, or NULL if no
+ * matching part is foundi; must be unref'd
  */
 TnyMimePart* modest_tny_msg_actions_find_nth_part (TnyMsg *msg, gint index);
 
 
+/**
+ * modest_tny_msg_actions_find_body:
+ * @self: 
+ * @want_html: 
+ * 
+ * gets the body of a message as text, if @want_html is true, try HTML mail
+ * first.
+ * 
+ * Returns: the body of the message as text
+ **/
 gchar* modest_tny_msg_actions_find_body (TnyMsg *self, gboolean want_html);
 
 #endif /* __MODEST_TNY_MSG_ACTIONS_H__ */