* crypto: update other mu-msg-part users for api changes

This commit is contained in:
djcb
2012-07-17 19:17:09 +03:00
parent c7cf0c6655
commit 9e59b1f29b
4 changed files with 10 additions and 7 deletions

View File

@ -1,3 +1,4 @@
/*
** Copyright (C) 2011 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
@ -286,7 +287,8 @@ mu_msg_attach_view_set_message (MuMsgAttachView *self, MuMsg *msg)
cbdata.store = store;
cbdata.count = 0;
mu_msg_part_foreach (msg, FALSE, (MuMsgPartForeachFunc)each_part, &cbdata);
mu_msg_part_foreach (msg, (MuMsgPartForeachFunc)each_part, &cbdata,
MU_MSG_PART_OPTION_NONE);
return cbdata.count;
}