* rename mu_msg_iter_is_null => mu_msg_iter_is_done

This commit is contained in:
Dirk-Jan C. Binnema
2010-09-09 00:09:00 +03:00
parent c6ebff4928
commit d1f4ebde0b
2 changed files with 22 additions and 19 deletions

View File

@ -40,13 +40,14 @@ gboolean mu_msg_iter_next (MuMsgIter *iter);
/**
* does the iter point to a real message?
* does this iterator point past the end of the list?
*
* @param iter a valid MuMsgIter iterator
*
* @return TRUE if the iterator points to a message, FALSE other
* @return TRUE if the iter points past end of the list, FALSE
* otherwise
*/
gboolean mu_msg_iter_is_null (MuMsgIter *iter);
gboolean mu_msg_iter_is_done (MuMsgIter *iter);
/**