* rename mu_msg_str => mu_str

This commit is contained in:
Dirk-Jan C. Binnema
2010-11-23 00:44:18 +02:00
parent 89b85cf7f7
commit 0f2b4e2d3c
16 changed files with 98 additions and 101 deletions

View File

@ -27,7 +27,7 @@
#include <ctype.h>
#include "mu-util.h"
#include "mu-msg-str.h"
#include "mu-str.h"
#include "mu-msg-priv.h" /* include before mu-msg.h */
#include "mu-msg.h"
@ -763,7 +763,7 @@ mu_msg_get_summary (MuMsg *msg, size_t max_lines)
return NULL; /* there was no text body */
return msg->_fields[SUMMARY_FIELD] =
mu_msg_str_summarize (body, max_lines);
mu_str_summarize (body, max_lines);
}