# HG changeset patch # User teknolog # Date 1270046203 -3600 # Node ID c06c2a75bb57c488712760a159e7caf693c67d74 # Parent 31e34b8e2878047a9638213a04dff6d03fdc4b08 Don't show error text in queue view diff -r 31e34b8e2878 -r c06c2a75bb57 application/src/PodcastQueueView.cpp --- a/application/src/PodcastQueueView.cpp Sat Mar 13 22:20:33 2010 +0000 +++ b/application/src/PodcastQueueView.cpp Wed Mar 31 15:36:43 2010 +0100 @@ -390,20 +390,11 @@ aShowInfo.PubDate().FormatL(showDate, KDateFormatShort()); } - if(aShowInfo.LastError() != KErrNone) - { - TBuf errorBuffer; - iEikonEnv->GetErrorText(errorBuffer, aShowInfo.LastError()); - iListboxFormatbuffer.Format(KShowErrorFormat(), iconIndex, &aShowInfo.Title(), &errorBuffer); - } - else - { - if (infoSize.Length() > 0) { - infoSize.Insert(0,_L(", ")); - } - - iListboxFormatbuffer.Format(KShowQueueFormat(), iconIndex, &aShowInfo.Title(), &showDate, &infoSize); - } + if (infoSize.Length() > 0) { + infoSize.Insert(0,_L(", ")); + } + + iListboxFormatbuffer.Format(KShowQueueFormat(), iconIndex, &aShowInfo.Title(), &showDate, &infoSize); } void CPodcastQueueView::UpdateShowItemDataL(CShowInfo* aShowInfo,TInt aIndex, TInt aSizeDownloaded)