diff -r e7776f6a2198 -r 091fa3bf3295 application/src/PodcastListView.cpp --- a/application/src/PodcastListView.cpp Sun Oct 31 12:16:04 2010 +0000 +++ b/application/src/PodcastListView.cpp Sun Oct 31 12:32:39 2010 +0000 @@ -87,14 +87,12 @@ if (aRect.Width() > aRect.Height()) { - DP("Landscape mode"); iLandscape = ETrue; iListbox = iListboxLandscape; iListboxLandscape->MakeVisible(ETrue); } else { - DP("Portrait mode"); iLandscape = EFalse; iListboxPortrait->MakeVisible(ETrue); iListbox = (CEikColumnListBox*) iListboxPortrait; @@ -154,16 +152,12 @@ { DP2("CPodcastListContainer::SizeChanged() BEGIN, width=%d, height=%d",Size().iWidth, Size().iHeight); - //TBool nowLandscape = ETrue;//!iLandscape; - TBool nowLandscape = Size().iWidth > Size().iHeight; - //TBool orientationChanged = nowLandscape && !iLandscape; - - iLandscape = nowLandscape; + iLandscape = Size().iWidth > Size().iHeight; if (iContainerListener) iContainerListener->SizeChanged(); - if (nowLandscape) + if (iLandscape) { iListboxPortrait->ScrollBarFrame()->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EOff ); iListboxPortrait->UpdateScrollBarsL(); @@ -220,7 +214,6 @@ { DP1("SetTextArray, aArray.Count=%d", aArray->Count()); iItemArrayShort->Reset(); - DP("after reset"); for (int i=0;iCount();i++) { TBuf<1024> line; @@ -448,7 +441,8 @@ void CPodcastListView::SetEmptyTextL(TInt aResourceId) { HBufC* emptyText = iEikonEnv->AllocReadResourceLC(aResourceId); - iListContainer->Listbox()->View()->SetListEmptyTextL(*emptyText); + iListContainer->iListboxPortrait->View()->SetListEmptyTextL(*emptyText); + iListContainer->iListboxLandscape->View()->SetListEmptyTextL(*emptyText); CleanupStack::PopAndDestroy(emptyText); }