* remove the needless batching in mu-msg-iter, mu-query, update callers

This commit is contained in:
Dirk-Jan C. Binnema
2011-06-02 17:35:46 +03:00
parent fbaa1fc66e
commit 794825e297
6 changed files with 12 additions and 16 deletions

View File

@ -81,7 +81,7 @@ run_and_count_matches (const char *xpath, const char *query)
/* } */
iter = mu_query_run (mquery, query, MU_MSG_FIELD_ID_NONE,
FALSE, 1, NULL);
FALSE, NULL);
mu_query_destroy (mquery);
g_assert (iter);
@ -231,7 +231,7 @@ test_mu_query_accented_chars_01 (void)
query = mu_query_new (xpath, NULL);
iter = mu_query_run (query, "fünkÿ", MU_MSG_FIELD_ID_NONE,
FALSE, 1, NULL);
FALSE, NULL);
err = NULL;
msg = mu_msg_iter_get_msg (iter, &err); /* don't unref */
if (!msg) {