--- 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*/)