* 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

@ -335,7 +335,7 @@ run_query (const char *xpath, const char *query, MugMsgListView * self)
}
iter =
mu_query_run (xapian, query, MU_MSG_FIELD_ID_DATE, TRUE, 0, &err);
mu_query_run (xapian, query, MU_MSG_FIELD_ID_DATE, TRUE, &err);
mu_query_destroy (xapian);
if (!iter) {
g_warning ("Error: %s", err->message);
@ -404,6 +404,7 @@ update_model (GtkListStore * store, const char *xpath, const char *query,
return count;
}
int
mug_msg_list_view_query (MugMsgListView * self, const char *query)
{