--- a/emailuis/nmframeworkadapter/src/nmfwamessagepartsfetchingoperation.cpp Fri Jul 02 15:55:16 2010 +0300
+++ b/emailuis/nmframeworkadapter/src/nmfwamessagepartsfetchingoperation.cpp Fri Jul 09 12:17:13 2010 +0300
@@ -32,18 +32,18 @@
mMailClient(mailClient),
mLastProgressValue(0),
mRequestId(0)
-
{
NM_FUNCTION;
// Take own copy of the message part id list.
mMessagePartIds.Reset();
for (int i=0; i<messagePartIds.count(); ++i) {
- mMessagePartIds.Append(
+ // let's ignore .Append return value here, the failing messages
+ // just won't be handled at this time
+ int ignore = mMessagePartIds.Append(
NmConverter::nmIdToMailMsgId(
messagePartIds.at(i)));
}
-
}
/*!