* add compact display as default, some icons
[modest] / src / modest-text-utils.h
index 28723f0..e2f532a 100644 (file)
@@ -4,11 +4,13 @@
 #ifndef __MODEST_TEXT_UTILS_H__
 #define __MODEST_TEXT_UTILS_H__
 
+#include <time.h>
+
 /* public */
 
 /**
  * modest_text_utils_quote:
- * @buf: a GtkTextBuffer which contains the message to quote
+ * @buf: a string which contains the message to quote
  * @from: the sender of the original message
  * @sent_date: sent date/time of the original message
  * @limit: specifies the maximum characters per line in the quoted text
  * Returns: a string containing the quoted message
  */
 gchar *
-modest_text_utils_quote(GtkTextBuffer *buf,
+modest_text_utils_quote(const gchar *buf,
                         const gchar *from,
                         const time_t sent_date,
                         const int limit);
 
-
-#endif
+#endif /* __MODEST_TEXT_UTILS_H__ */