diff -r e211a78d3037 -r a7a43293ae56 engine/src/OpmlParser.cpp --- a/engine/src/OpmlParser.cpp Thu Feb 25 16:47:16 2010 +0000 +++ b/engine/src/OpmlParser.cpp Thu Feb 25 17:12:04 2010 +0000 @@ -71,9 +71,9 @@ CleanupStack::PopAndDestroy(charset); } -void COpmlParser::OnEndDocumentL(TInt /*aErrorCode*/) +void COpmlParser::OnEndDocumentL(TInt aErrorCode) { - iFeedEngine.OpmlParsingComplete(iNumFeedsAdded); + iFeedEngine.OpmlParsingComplete(aErrorCode, iNumFeedsAdded); //DP("OnEndDocumentL()"); } @@ -227,7 +227,7 @@ void COpmlParser::OnError(TInt aErrorCode) { DP1("COpmlParser::OnError %d", aErrorCode); - iFeedEngine.OpmlParsingComplete(iNumFeedsAdded); + iFeedEngine.OpmlParsingComplete(aErrorCode, iNumFeedsAdded); } TAny* COpmlParser::GetExtendedInterface(const TInt32 /*aUid*/)