emailuis/nmframeworkadapter/src/nmfwamessagepartsfetchingoperation.cpp
changeset 59 16ed8d08d0b1
parent 30 759dc5235cdb
--- a/emailuis/nmframeworkadapter/src/nmfwamessagepartsfetchingoperation.cpp	Tue Jul 06 14:04:34 2010 +0300
+++ b/emailuis/nmframeworkadapter/src/nmfwamessagepartsfetchingoperation.cpp	Wed Aug 18 09:37:47 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)));
     }
-    
 }
 
 /*!