# HG changeset patch # User Sebastian Brannstrom # Date 1289579163 -3600 # Node ID 88a24b8b97d8b4f6a0c4c8c20c703f4d64de8f8c # Parent c44ad45736ffb3d00f51cc5b95ba6617f5b0f92f Added some more debugging for MPX integration diff -r c44ad45736ff -r 88a24b8b97d8 engine/src/ShowEngine.cpp --- a/engine/src/ShowEngine.cpp Fri Nov 12 16:44:27 2010 +0100 +++ b/engine/src/ShowEngine.cpp Fri Nov 12 17:26:03 2010 +0100 @@ -264,13 +264,17 @@ void CShowEngine::AddShowToMpxCollection(CShowInfo &aShowInfo) { + DP("CShowEngine::AddShowToMpxCollection BEGIN"); #ifdef ENABLE_MPX_INTEGRATION if (!iCollectionHelper) iCollectionHelper = CMPXCollectionHelperFactory::NewCollectionHelperL(); // if this leaves, not much we can do anyway - TRAP_IGNORE(iCollectionHelper->AddL(aShowInfo.FileName(), this)); + DP(" MPX integration enabled, adding show to collection"); + TRAPD(err, iCollectionHelper->AddL(aShowInfo.FileName(), this)); + DP1(" AddL returned %d", err); #endif + DP("CShowEngine::AddShowToMpxCollection END"); } void CShowEngine::CompleteL(CHttpClient* /*aHttpClient*/, TInt aError)